Python教程

【Python】几种常用的 字符串.函数

本文主要是介绍【Python】几种常用的 字符串.函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

字符串

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
运行结果
这篇关于【Python】几种常用的 字符串.函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!