Python - 列表名称语法错误

时间:2017-04-14 02:32:21

标签: python list

嘿,所以我一直在研究这个真相或敢于python游戏一段时间,我之前从未遇到过这个问题,但是当我放一个列表时它给了我一个语法错误,但只在列表的名称上。不是实际的清单本身。这是代码:

SelectedItem

列表d是获得语法错误的一个,请帮忙!

2 个答案:

答案 0 :(得分:0)

您错过了关闭

中的括号')'
print(random.choice(d),(random.choice(d_time))

并正确缩进代码,代码将运行。

答案 1 :(得分:0)

我认为问题在于:

elif ch == 2:
        print(random.choice(d),(random.choice(d_time))    # THIS PART!!!
# You forget to close brackets! > print(random.choice(d),(random.choice(d_time)))
        time.sleep(1)
        br = input("did you ([1] chiken out?) or ([2] complete it?)")
        if br == '1':
            print("wow...")
            time.sleep(1)
            print("thats sad...")
            time.sleep(1)
            print("Next player!")
            time.sleep(1)
            begin()

打印(random.choice(d),(random.choice(D_TIME))的

此外,您应该使用IDE,IDE告诉您这些基本错误,或者当您忘记关闭]时,或:。它们为您节省了大量搜索错误的时间!