Python/gloss python tuple length

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python元组长度

元组长度

要确定元组有多少项,请使用 len() 方法:

打印元组中的项目数:

thistuple = ("apple", "banana", "cherry")

  print(len(thistuple))