python如何訪問元組中的元素

wh7577發表於2021-09-11

python訪問元組中的元素的方法:我們可以使用下標索引來訪問元組中的值。具體使用方法如:【tup1 = ('physics', 'chemistry', 1997, 2000);print tup1[0]】。

python如何訪問元組中的元素

可以使用下標索引來訪問元組中的值。

(推薦教程:)

程式碼如下:

#!/usr/bin/python

tup1 = ('physics', 'chemistry', 1997, 2000);
tup2 = (1, 2, 3, 4, 5, 6, 7 );
 
print "tup1[0]: ", tup1[0]
print "tup2[1:5]: ", tup2[1:5]

輸出結果:

#tup1[0]:  physics
#tup2[1:5]:  [2, 3, 4, 5]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2480/viewspace-2832750/,如需轉載,請註明出處,否則將追究法律責任。

相關文章