码迷,mamicode.com
首页 > 其他好文 > 详细

常见字符串操作

时间:2017-06-07 20:52:34      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:格式化   enter   count   字符串   切片   swap   find   字符   cas   

print(‘‘,end=‘ ‘)不换行输出

科学计数法
print(1.3e3)
1300

bin(10)转为二进制
oct()八进制
hex()十六进制

.strip()掐头去尾
.capitalize()首字母大写
.upper()所有字母大写
.center(30,‘*‘)居中,以*填充,总长30
.count()统计
.endswith()判断是否以xx结尾
.find()查找
.format格式化
.index索引
[]切片
.isdigit判断是否数字
.replace替换
x=‘a‘实际上是x=str(‘a‘)
.split()分割
.isupper是否全是大写
.isspace是否全是空格
.istitle是否大写开头
.ljust左对齐
.swapcase大小写反转
.title首字母大写

移除空白.strip
分割.split
长度len
索引index
切片[]

常见字符串操作

标签:格式化   enter   count   字符串   切片   swap   find   字符   cas   

原文地址:http://www.cnblogs.com/yx179971/p/6958822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!