iT邦幫忙

DAY 11
0

Python初學起步走系列 第 11

[Python初學起步走-Day11] - tuple(續)

  • 分享至 

  • xImage
  •  

tuple裡面可以在使用更多的tuple

例如

#tuple.py
location = ("taipei",101,("信義區","大安區","中正區"))
print(location)
print(location[2][1])
print(location[2][1][1])

Python可借由tuple unpacked快速的實現變數交換

例如

#tuple.py
a=3
b=4
a,b=b,a # 或寫成(a,b)=(b,a)
print(a)
print(b)

也可以運用在for...in中

例如

#tuple.py
for x,y,z in ((1,2,3),(3,4,5),(5,6,7)):
    print(x+y+z)


上一篇
[Python初學起步走-Day10] - tuple
下一篇
[Python初學起步走-Day12] - list
系列文
Python初學起步走30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言