可以使用Python内置的len()函数来查看元组的元素个数。
具体的方法如下:
my_tuple = (1, 2, 3, 4, 5)
length = len(my_tuple)
print("元组的元素个数为:", length)
完整的代码如下:
my_tuple = (1, 2, 3, 4, 5) length = len(my_tuple) print("元组的元素个数为:", length)
运行结果为:
元组的元素个数为: 5