衣者褚 发表于 2020-10-3 19:33:08

元组中是只能有同一类型的成员吗?

>>> tuple2 = 1,1,2,3,5,8,13,a,b,c,d,e,f,g
Traceback (most recent call last):
File "<pyshell#43>", line 1, in <module>
    tuple2 = 1,1,2,3,5,8,13,a,b,c,d,e,f,g
NameError: name 'd' is not defined
>>> tuple2 = 1,1,2,3,5,8,13,a,b,c,
>>> tuple2
(1, 1, 2, 3, 5, 8, 13, [], (), '')
>>> tuple2 = 1,1,2,3,5,8,13,,c,d
Traceback (most recent call last):
File "<pyshell#46>", line 1, in <module>
    tuple2 = 1,1,2,3,5,8,13,,c,d
NameError: name 'd' is not defined
>>> tuple2 = 1,1,2,3,5,8,13,,(b),"c",
>>> tuple2
(1, 1, 2, 3, 5, 8, 13, [[]], (), 'c')
>>> max(tuple(2))
Traceback (most recent call last):
File "<pyshell#49>", line 1, in <module>
    max(tuple(2))
TypeError: 'int' object is not iterable

元组中是只能有同一类型的成员吗?
如果只能是有同一类型的成员,为什么会出现倒数第六行那样的情况,如果不能,那么第一行那样的情况为什么会出错?
{:5_94:}

zltzlt 发表于 2020-10-3 19:35:19

不是,如果是字符串要加上引号

zltzlt 发表于 2020-10-3 19:36:17

>>> max((2, ))
2

应该这样,因为 2 不能转化为元组

xiaopihu888 发表于 2020-10-3 20:17:42

可以加不同元素啊,数字直接写字母前后加上引号表示一个字符串否则会认为是一个变量,而你又没定义这个变量所以会报错
页: [1]
查看完整版本: 元组中是只能有同一类型的成员吗?