我正在做一個任務,我必須執行測驗,到目前爲止,這是我的代碼。爲什麼我的Python語句給我一個錯誤?
print("Hello and welcome to Shahaad's quiz!") #Introduction
name = input("What is your name? ")
print("Alright", name,", these will be today's topics:")
print("a) Video Games")
print("b) Soccer")
print("c) Geography")
choice = input("Which topic would you like to begin with?")
if choice == 'video games'
print("Lets start with Video Games!")
我試圖使它的是,如果人選擇電腦遊戲作爲他們的第一個話題,它打印出的最後一行,但我不斷收到錯誤,而且如果選擇==「視頻遊戲」。
Python塊應該用':'表示,從你的if語句中遺漏。 '如果選擇=='電子遊戲':' –