常用函数
在程序开发中,字符串经常需要被处理,例如,求字符串的长度、大小写转换等。如果每次处理字符串时,都编写相应的代码,那么开发效率会非常低下,为此Python提供了一些内置函数用于处理字符串常见的操作。
大小写转换
Python中涉及字符串大小写转换的函数,如表所示。
上述两种方法都返回一个新字符串,其中的非字母字符保持不变。如果需要进行大小写无关的比较,则这两个函数非常有用。接下来演示其用法,如例所示。
name = "xiaochao" #假设用户名为xiaochao
str = input("请输入用户名(不区分大小写)∶")
if str.lower() == name:
print("欢迎用户%s登录"%name)
else:
print("用户名错误")
判断字符
Python中提供了判断字符串中包含某些字符的函数,这些函数在处理用户输入的字符串时是非常方便。这些函数都是以is开头,如表所示。
接下来演示这些函数的基本用法,如例所示。
print("xiaochao".islower()) #True
print("Xiaochao".islower()) #小写字母中有大写字母
print("xiaochao6666".islower()) #True
print("XIAOCHAO".isupper()) #True
print("XIAOcHAO".isupper()) #大写字母中有小写字母
print("XIAOCHAO6666".isupper()) #True
print("xiaochao666".isalpha()) #包含数字字符
print("xiaochao666".isalnum()) #True
print("xianchao666".isdigit()) #包含字母字符
print(" \t\n".isspace(