标签:切片 更新 pre com art 分隔符 第一个 form for
字符串方法
st = ‘hello ming {name} is {age}‘
# 统计元素个数
print(st.count("l"))
# 居中
print(st.center(20,‘#‘))
# 判断是否以某个内容开头
print(st.startswith(‘el‘))
# 查找到第一个元素,并将索引值返回
print(st.find(‘t‘))
# 格式化输出的另一种方式 待定:?:{}
print(st.format(name=‘abc‘,age=18))
# 将字符串中的大写字母转化为小写
print(‘My tLtle‘.lower())
# 将字符串中的小写字母转化为大写
print(‘My tLtle‘.upper())
# 将字符串的首尾换行和空格去掉
print(‘\tMy tLtle\n‘.strip())
# itle 是需要替换的字符,替换成lesson 1位次数
print(‘My title title‘.replace(‘itle‘,‘lesson‘,1))
# i 为切片分隔符 1是指定从第几个分隔
print(‘My title title‘.split(‘i‘,1))
==============================================================
作者:compy 更新日期:2017-10-20 10:57 Q群:627806889
==============================================================
标签:切片 更新 pre com art 分隔符 第一个 form for
原文地址:http://www.cnblogs.com/cslzzl/p/7698392.html