這應該是全網(wǎng)最簡單的密碼檢測的吧,不需要任何的三方庫也不需要正則判斷传惠,就是原生的字符串函數(shù)迄沫。
唯一的缺點是一行代碼太長,不符合書寫規(guī)范卦方。
def check_password(password):
if len(password) > 7 and not password.islower() and not password.isupper() and not password.isdigit():
return True
else:
return False
print(check_password(input()))
如果對您有幫助羊瘩,請點個贊唄
代碼原創(chuàng),轉(zhuǎn)載請注明出處
http://www.reibang.com/p/4a488abbd8ec