如何在索引i中查找和返回项目?

时间:2018-02-19 01:09:50

标签: python-3.x

嗯,我知道有很多列表方法,但我找不到我的问题所需的方法。我可能只是愚蠢,但我需要一个解决方案,如果我想打印一个已经给定的变量。for i in range(list)将无法工作,因为它将始终在索引位置0重新启动。

我不需要删除该项目,但我需要将其返回给我。

这是我的代码:

P1 = 50
P2 = 50
P3 = 50
P4 = 50
playList = [ P1, P2, P3, P4]
turns = 3
# how can I get my code to print item at index turns?

1 个答案:

答案 0 :(得分:0)

只需使用索引[]上的turns表示法访问您的列表项,就像这样 playList[turns]

P1 = 22
P2 = 33
P3 = 44
P4 = 50
playList = [ P1, P2, P3, P4]
turns = 3
print(playList[turns]) #will print 50