python字母、数字、⼤⼩写相关函数# -*- coding: UTF-8 -*-isalpha 函数
example ="Peace and love"
print(example.isupper())# 所有字符都是⼤写,真返回True,假返回False
print(example.upper())# 把所有字符中的⼩写字母转换成⼤写字母
print(example.islower())# 所有字符都是⼩写,真返回True,假返回False
print(example.lower())# 把所有字符中的⼤写字母转换成⼩写字母
print(example.capitalize())# 把第⼀个字母转化为⼤写字母,其余⼩写
print(example.istitle())# 所有单词⾸字母均为⼤写,真返回True,假返回False
print(example.title())# 把每个单词的第⼀个字母转化为⼤写,其余⼩写
print(example.isalnum())# 所有字符只有数字或字母,真返回True,假返回False
print(example.isalpha())# 所有字符只有字母,真返回True,假返回False
print(example.isdigit())# 所有字符只有数字,真返回True,假返回False
print(example.isspace())# 所有字符都是空字符,真返回True,假返回False
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论