:::: 개발 ::::/:::: PYTHON(파이썬) ::::

파이썬 간단한 숫자 맞추기 게임

nayha 2022. 8. 25. 15:24
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 ")

반응형