派森学长带你学python—字符串(4)

数据的验证


对输入数据的合法性进行验证,可应用于密码验证。

数据的验证:对输入数据的合法性进行验证
'''
#str.isdigit()所有数字都是阿拉伯数字(1)
print('123'.isdigit())
print('一二三'.isdigit())
print('0b1010'.isdigit())
print('I、II、III'.isdigit())
print('壹、贰、叁'.isdigit())
'''
True
False
False
False
False
'''
#str.isnumeric所有数字都是数字(2)
print('123'.isnumeric())
print('一二三'.isnumeric())
print('0b1010'.isnumeric())
print('ⅠⅡⅢ'.isnumeric())
print('壹贰叁'.isnumeric())
'''
True
True
False
True
True
'''
#str.isalpha()所有字符都是字母(包含中文字符)(3)
print('helllo你好'.isalpha())#True
print('hello你好2024'.isalpha())#False
#str.isalnum()所有字符都是数字或字母(4)
print('helllo你好'.isalnum())#True
print('hello你好2024'.isalnum())#True
#str.islower()所有字符都是小写(5)
print('HelloWorld'.islower())
print('helloworld'.islower())
print('hello你好'.islower())
'''
False
True
True
'''
#str.isupper()所有字符都是大写(6)
print('HelloWorld'.isupper())
print('HELLOWORLD'.isupper())
print('hello你好'.isupper())
'''
False
True
False
'''
#str.istitle()所有字符首字母必须大写,且大写字母只能是首字母(7)
print('Helloworld'.istitle())
print('helloWorld'.istitle())
print('HelloWorld'.istitle())
print('Hello World'.istitle())
'''
True
False
False
True
'''
#判断是否都是空白字符
print('\t'.isspace())
print(' '.isspace())
print('\n'.isspace())
'''
True
True
True
'''

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

派森学长

让我们一起学习python

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值