Python/gloss python set length

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

<languages />

Python获取集合的长度

获取集合的长度

要确定一组物品有多少件,请使用 len() 方法。

获取集合中的项目数:

  thisset = {"apple", "banana", "cherry"}


  print(len(thisset))