Python - 4 1. 알파벳 퀴즈 만들기 questions = ["tr_in", "b_s", "_axi", "air_lane"] answers = ["a", "u", "t", "p"] for i in range(0, 4, 1) : q = "%s in Alpabet? : " % questions[i] ans = input(q) if ans == answers[i] : print("Collect!") else : print("Oh, No") Command & Development/Python 2022.05.12