直接上代碼:python
#encode:u8 import re s1 = 'adkkdk' #判斷s1字符串是否負責都爲小寫的正則 an = re.search('^[a-z]+$', s1) if an: print 'yes' else: print 'no'