SelectedItem
列表d是获得语法错误的一个,请帮忙!
答案 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告诉您这些基本错误,或者当您忘记关闭]时,或:。它们为您节省了大量搜索错误的时间!