Command & Development/Python

Python - 4

Richard.Ryu 2022. 5. 12. 11:00
반응형

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' 카테고리의 다른 글

[Python] 가위바위보 게임  (0) 2024.01.08
[Python] Lotto 번호 생성  (0) 2023.03.29
Python - 3  (0) 2022.05.11
Python - 2  (0) 2022.05.10
Python - 1  (0) 2022.05.09