python

. 创建和访问一个元组

  • Python 的元组与列表类似,不同之处在于tuple被创建后就不能对其进行修改,类似字符串。
  • 元组使用小括号,列表使用方括号。
  • 元组与列表类似,也用整数来对它进行索引 (indexing) 和切片 (slicing)。

【例子】

1

t1 = (1, 10.31, 'python')

2

t2 = 1, 10.31, 'python'

3

print(t1, type(t1))

4

# (1, 10.31, 'python') <class 'tuple'>

5

6

print(t2, type(t2))

7

# (1, 10.31, 'python') <class 'tuple'>

8

9

tuple1 = (1, 2, 3, 4, 5, 6, 7, 8)

10

print(tuple1[1])  # 2

11

print(tuple1[5:])  # (6, 7, 8)

12

print(tuple1[:5])  # (1, 2, 3, 4, 5)

13

tuple2 = tuple1[:]

14

print(tuple2)  # (1, 2, 3, 4, 5, 6, 7, 8)
(1, 10.31, 'python') <class 'tuple'>

(1, 10.31, 'python') <class 'tuple'>

2

(6, 7, 8)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值