获取 python 中某个字符的大小写
Get the case of a character in python
是否有 属性 个字符 returns 的情况?也许像 char.case()
?我需要它来摆脱一些困扰我的重复代码。
您可以使用str.isupper()
and str.islower()
>>> 'a'.isupper()
False
>>> 'a'.islower()
True
>>> 'A'.isupper()
True
>>> 'A'.islower()
False
函数isupper()
和islower ()
就是您所需要的
>>> 'a'.isupper()
False
>>> 'A'.isupper()
True
>>> 'b'.islower()
True
>>> 'B'.islower()
False
是否有 属性 个字符 returns 的情况?也许像 char.case()
?我需要它来摆脱一些困扰我的重复代码。
您可以使用str.isupper()
and str.islower()
>>> 'a'.isupper()
False
>>> 'a'.islower()
True
>>> 'A'.isupper()
True
>>> 'A'.islower()
False
函数isupper()
和islower ()
就是您所需要的
>>> 'a'.isupper()
False
>>> 'A'.isupper()
True
>>> 'b'.islower()
True
>>> 'B'.islower()
False