1. 程式人生 > >Python基礎7:字串

Python基礎7:字串

1  * 重複輸出字串
print('helo '*4)
2  [],[:] 通過索引獲取字串中的字元,這裡和列表中的切片操作是相同的,具體內容見列表
print('hello word'[2:])
3  in 成員運算子 - 如果字串中包含指定的字元返回True
print('el' in 'hello')
4  格式字串
print('%s is a super hero'%'lron man')
5  + 字串拼接
a,b,c = 'one','two','three'
print(a+b+c)    #效率低
d = ''
.join([a,b,c]) print(d)