一:str.isalnum()str.isalpha()str.isdigit()str.islower()str.isupper() 

1.str.isalnum() 
This method checks if all the characters of a string are alphanumeric (a-z, A-Z and 0-9).

>>> print 'ab123'.isalnum()
True
>>> print 'ab123#'.isalnum()
False

2.str.isalpha() 
This method checks if all the characters of a string are alphabetical (a-z and A-Z).

>>> print 'abcD'.isalpha()
True
>>> print 'abcd1'.isalpha()
False

3.str.isdigit() 
This method checks if all the characters of a string are digits (0-9).

>>> print '1234'.isdigit()
True
>>> print '123edsd'.isdigit()
False

4.str.islower() 
This method checks if all the characters of a string are lowercase characters (a-z)

>>> print 'abcd123#'.islower()
True
>>> print 'Abcd123#'.islower()
False

5.str.isupper()  

This method checks if all the characters of a string are uppercase characters (A-Z). 

>>> print 'ABCD123#'.isupper()
True
>>> print 'Abcd123#'.isupper()
False

  

  

  

转载于:https://www.cnblogs.com/Mr-l/p/10662270.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐