這是一個(gè)問答游戲源代碼(自己寫的)請(qǐng)?jiān)趐ython中用)
def ask_question(question, answer):
? ? user_answer = input(question + " ")
? ? if user_answer.lower() == answer.lower():
? ? ? ? print("回答正確!\n")
? ? ? ? return True
? ? else:
? ? ? ? print("回答錯(cuò)誤!\n")
? ? ? ? return False
def main():
? ? questions = [
? ? ? ? {
? ? ? ? ? ? "question": "1 + 1 = ?",
? ? ? ? ? ? "answer": "2"
? ? ? ? },
? ? ? ? {
? ? ? ? ? ? "question": "首都是哪里?",
? ? ? ? ? ? "answer": "北京"
? ? ? ? },
? ? ? ? {
? ? ? ? ? ? "question": "世界上最高的山是哪座山?",
? ? ? ? ? ? "answer": "珠穆朗瑪峰"
? ? ? ? }
? ? ]
? ? print("歡迎來到答題游戲!")
? ? score = 0
? ? for q in questions:
? ? ? ? question_text = q["question"]
? ? ? ? correct_answer = q["answer"]
? ? ? ? result = ask_question(question_text, correct_answer)
? ? ? ? if result:
? ? ? ? ? ? score += 1
? ? print(f"游戲結(jié)束!您的得分是:{score}/{len(questions)}")
if __name__ == "__main__":
? ? main()