【Python】几种常用的 字符串.函数
2021/9/18 17:05:33
本文主要是介绍【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】几种常用的 字符串.函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-02Python编程基础
- 2024-11-01Python 基础教程
- 2024-11-01用Python探索可解与不可解方程的问题
- 2024-11-01Python编程入门指南
- 2024-11-01Python编程基础知识
- 2024-11-01Python编程基础
- 2024-10-31Python基础入门:理解变量与数据类型
- 2024-10-30Python股票自动化交易资料详解与实战指南
- 2024-10-30Python入行:新手必读的Python编程入门指南
- 2024-10-30Python入行:初学者必备的编程指南