from random import randint # 랜덤하게 1~50 사이 숫자 생성 pc_choice = randint(1,50) palying = True # 맞출때 까지 루프 while palying: # 유저가 고른 숫자 user_choice = int(input("choose Number ")) # 같으면 짝짝 if user_choice == pc_choice: print("you won ",pc_choice) palying = False elif user_choice > pc_choice: print("Lower") elif user_choice < pc_choice: print("Higher ")