python如何訪問元組中的元素
python訪問元組中的元素的方法:我們可以使用下標索引來訪問元組中的值。具體使用方法如:【tup1 = ('physics', 'chemistry', 1997, 2000);print tup1[0]】。
可以使用下標索引來訪問元組中的值。
(推薦教程:)
程式碼如下:
#!/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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- js如何使用索引訪問陣列物件中的元素JS索引陣列物件
- python元組有哪些獲取元素的方法Python
- Python如何訪問閉包中的變數Python變數
- 不用for迭代 --手工訪問迭代器中的元素.
- C++ 順序容器中訪問元素C++
- python命名元組如何理解Python
- python如何訪問網頁Python網頁
- Python中如何避免字典和元組的多重巢狀的方法Python巢狀
- python的元組Python
- python如何返回元組,列表或字典的?Python
- iframe 元素跨域訪問跨域
- python元組如何打包和解包Python
- python 中字典dict如何新增元素?Python
- 訪問vector元素方法的效率比較
- 微課|中學生可以這樣學Python(5.8.1節):使用切片訪問列表元素Python
- Python奇技淫巧—[2]—使用元組代替字典,同時為元組元素命名,提高可讀性Python
- Python 元組Python
- 『無為則無心』Python序列 — 20、Python中的元組Python
- [Python手撕]有序陣列中的單一元素Python陣列
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- python元組的特點Python
- Python元組tuplePython
- Python tuple(元組)Python
- python-元組Python
- 如何在Linux中如何限制對su命令的訪問Linux
- python中的列表和元組有什麼區別Python
- 如何訪問Docker容器中的Spring Boot日誌DockerSpring Boot
- python元組和列表Python
- Python速通(元組)Python
- Python元組詳解Python
- 認識Python 元組Python
- 06_Python 元組Python
- Python基礎_元組Python
- Python中列表、元組、字典有何區別?Python學習!Python
- 如何在Mac字型中訪問特殊字元Mac字元
- Springboot中如何訪問靜態資源Spring Boot
- Swift 中的訪問控制Swift