s1='qWTGhh2e'
s2='Hello World!\nLi Ming .\nHe is a student.'
s3=' Hello '
s4='hello world! li ming . he is a student.'
s5='13j24 '
print(s1.isalpha()) #是否都为字母
print(s1.swapcase()) #大写小写字母的转换
print(s4.title()) #每个单词首字母大写
print(s1.lower()) #大写的变小写
print(s3.upper()) #所有单词大写
print(s2.splitlines()) #按\n切割,
print(s1.center(40)) #居中
print(s3.strip()) #去掉两边的空格
print(s4.capitalize()) #第一个字母大写
print(s5.isdigit()) #是否全为数字
print(s1.isalnum()) #是否有字母
python 对字符串的操作
最新推荐文章于 2024-06-06 00:30:00 发布