Python中定义元组的方法是使用圆括号 () 将多个元素括起来,并用逗号分隔。例如:
my_tuple = (1, 2, 3, 4, 5)
此外,还可以使用内置的tuple()函数将其他可迭代对象(如列表或字符串)转换为元组。例如:
tuple()
my_list = [1, 2, 3, 4, 5] my_tuple = tuple(my_list)