가위 바위 보 게임 파이썬 코드
import random def get_user_choice(): choice = input("가위, 바위, 보 중 하나를 선택하세요: ").strip().lower() if choice not in ["가위", "바위", "보"]: print("올바른 선택이 아닙니다. 다시 시도하세요.") return get_user_choice() return choice def get_computer_choice(): choices = ["가위", "바위", "보"] return random.choice(choices) def determine_winner(user_choice, computer_choice): if user_choice == computer_choice: return "무승부" elif ( (us..
시사경제지식
2023. 8. 25. 02:00