python基础5--字符串
2018-06-18 00:57:23来源:未知 阅读 ()
1 find()、rfind()、index()、rindex()、count()
s = "this apple is red apple" s.find("apple") s.find("apple",9) s.find("apple",1,3) s.rfind("app") #从字符串尾部向前查找 s.index("pp") s.count("p")
2 split()、rsplit()、partition()、rpartition()
partition将字符串分为三部分,分隔符前,分隔符,分隔符后,’r’表示从尾部向前
s.split(' ') #使用空格分割 ['this', 'apple', 'is', 'red', 'apple'] s.partition(' ') #('this', ' ', 'apple is red apple')
3 join()
多个字符串连接,相邻字符串插入指定字符
s1 = s.split(' ') sep = "-" s2 = sep.join(s1) #'this-apple-is-red-apple'
4 lower()、upper()、capitalize()、title()、swapcase()
将字符串转换为小写,大写,首字母大写,每个单词首字母大写,大小写互换
5 replace()
s.replace("apple","orange") #'this orange is red orang'
6 maketrans()、translate()
maketrans()生成字符映射表,translate()按照映射表替换字符,第二个参数为要删除的字符
import string table = string.maketrans("abcdefg","1234567") s = "this apple is red apple" s.translate(table) #'this 1ppl5 is r54 1ppl5' s.translate(table,"hijk") #删除hijk 'ts 1ppl5 s r54 1ppl5'
7 strip()、rstrip()、lstrip()
删除两端、右端、左端空白字符或指定字符
s = " abc " s.strip() #删除两端空白字符 'abc' "abdc".strip("a") #删除指定字符 "aabdcaaa".rstrip("a") #删除右端指定字符 'aabdc'
8 eval()
尝试将任意字符转化为表达式进行求值
eval("3+4") import math eval('math.sqrt(3)')
9 startswith()、endswith()
判断字符串是否以指定字符串开始或结束
10 isalnum()、isalpha()、isdigit()、isspace()、isupper()、islower()
测试字符串是否为数字或字母,是否为字母,是否为数字,是否为空白,大写,小写
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Python3 的内置函数和闭包
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash