元組和字串

萬里無雲便是我發表於2017-05-14

程式碼:

# -*-coding:utf-8 -*-

#元組
#訪問元組
tup1=('a','b',1997,2000)
tup2=(1,2,3,4,5,6,7)
print 'tup1[0]:',tup1[0]
print 'tup2[1:5]:',tup2[1:5]
# 元組連線
tup3=tup1+tup2
print  tup3
# 刪除元組
del tup1


#字串
#查詢
s="python"
print s.index('p')
print s.index('h',1,4)
print  s.find('s')
print  s.find('h',1)
#替換
print s.replace('h','i')
print s
#計數
print s.count('n')
#以空格作為分隔符進行分割
ss="hello i like eating"
print ss.split()
s1="you|are|so|beautiful"
print s1.split('|')
#join組合
li=['apple','pear','banana']
sep=','
qq=sep.join(li)
print qq


執行結果:

相關文章