python输出的几种方式
更多技术博客,请关注微信公众号:运维之美
1.字符串的格式化输出
直接用花括号
print('My name is {},{} years old!'.format('xiaoming','28'))
使用格式化字段
print('My name is {0},{1} years old!'.format('xiaoming','28'))
使用变量
print('My name is {name},{age} years old!'.format(name='xiaoming',age='28'))
2. %S输出字符串
name='xiaoming'
print('His name is %s ' %name)
3.字符串查找
str.find(str,start,end)
start,end表示替换的索引位置
4.字符串替换
str.replace(old,new,count) #count表示替换的个数,count省略表示替换所有
5.字符串分隔
split返回的是一个列表