Python - 按索引访问集合的项目

Python - Access items of a Set by index

所以我创建了一个集合,我需要获取该集合中索引为

的项目
myList = {Baseball,Basketball,Football}
print(myList.getitem(3)) #this should print item 3 of myList

谁能帮帮我?

因此,python 中的第一个列表用方括号括起来。另外,我假设 Basketball 和 Football 是您已经在脚本中定义的变量,因此您将拥有如下所示的内容:

Basketball = 5
Football = 'a'

myList = [Basketball, Basketball, Football]

您可以使用索引获取此列表第三项的值!索引从 0 开始计数,因此我们将调用索引 2 而不是 3

myList[2]

这将 return

'a'