以下内容均为个人理解,如有错误,敬请原谅!!!
元组定义的方式
直接定义
使用圆括号
tup1 = (1,2,3)
#(1, 2, 3)
使用逗号分割
tup = 1,2,3
#(1, 2, 3)
还可以同时使用这两种方法
tup2 = (1,2,3),(4,5)
#((1, 2, 3), (4, 5))
使用内置函数tuple
使用tuple可以将任何序列或者迭代器转换成元组
tup = tuple([1,2,3])
#(1, 2, 3)
tup = tuple('hello')
#('h', 'e', 'l', 'l', 'o')
#如果传入tuple的参数不是可迭代的对象,就会报错
#TypeError: 'int' object is not iterable