如何将Python字典键/值转换为小写?

您可以通过简单地迭代Python字典键/值并根据键和值创建新字典来将其转换为小写。例如,

def lower_dict(d):

   new_dict = dict((k.lower(), v.lower()) for k, v in d.items())

   return new_dict

a = {'Foo': "Hello", 'Bar': "World"}

print(lower_dict(a))

这将给出输出

{'foo': 'hello', 'bar': 'world'}

如果只想将键小写,则可以仅调用小写。例如,

def lower_dict(d):

   new_dict = dict((k.lower(), v) for k, v in d.items())

   return new_dict

a = {'Foo': "Hello", 'Bar': "World"}

print(lower_dict(a))

这将给出输出

{'foo': 'Hello', 'bar': 'World'}

以上是 如何将Python字典键/值转换为小写? 的全部内容, 来源链接: utcz.com/z/349020.html

回到顶部