iT邦幫忙

DAY 10
0

Python初學起步走系列 第 10

[Python初學起步走-Day10] - tuple

  • 分享至 

  • xImage
  •  

Python提供了五種序列(sequence)型態:

str、tuple、list、bytes、bytearray

tuple

是由多個物件參照組成的序列,tuple無法做改變(若要改變需使用list)

使用()建立tuple並以逗號(,)間隔

例如

("taipei",101,"信義區")

資料索引

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

與str操作相同,可以使用+(元素連接)、*(元素複製)、等運算符

#tuple.py
location=("taipei",101,"信義區")
print(location)
location=location+("市政府",)
print(location)
location=location*3
print(location)
print(location[1:])


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

尚未有邦友留言

立即登入留言