利用正则表达式判断字符串是否只有小写字母或数字。

import re

s = input()

list=re.findall(r'[0-9a-z]', s)

if len(list)==len(s):

    print('Y')

else:

    print('N')

你可能感兴趣的:(Python,正则表达式,python)