字符串
s = "hellO world !~" print(str.capitalize(s)) # 首字母大写 print(str.isalnum(s)) # 是否为数字或字母 print(str.isalpha(s)) # 是否为字母 print(str.isdigit(s)) # 是否只包含数字 print(str.islower(s)) # 是否存在大小写字符 print(str.format(s)) # 格式化字符串 print(str.lower(s)) # 转换为小写输出 print(str.upper(s)) # 转换为大写输出 print(s.join(s)) # 用于将序列中的元素以指定的字符连接生成一个新的字符串。
Hello world !~ False False False False hellO world !~ hello world !~ HELLO WORLD !~ hhellO world !~ehellO world !~lhellO world !~lhellO world !~OhellO world !~ hellO world !~whellO world !~ohellO world !~rhellO world !~lhellO world !~dhellO world !~ hellO world !~!hellO world !~~ 进程已结束,退出代码0运行结果
str.join() 函数 用于将序列中的元素以指定的字符连接生成一个新的字符串
a = "-->" b = "" c = "\','" list = ("h","e","l","l","o",",","w","o","r","l","d","!~") print(a.join(list)) print(b.join(list)) print(c.join(list)) print(list.join(a))
2 0.21454469294169343 3.346626079217021 t 17 [3, 1, 6, 7, 5] 1K4Mdbig 进程已结束,退出代码0运行结果