import1 1. [Python] 파이썬. 1 ~ 20 사이의 숫자를 3번의 기회에 맞추는 게임 1. chatGPT에 나온 숫자 게임 소스 코드# 1 ~ 20 사이의 숫자를 3번의 기회에 맞추는 게임import randomprint("Welcome to the guessing game! You have 3 tries to guess a number between 1 and 20.")# generate a random number between 1 and 20number = random.randint(1, 20)# set the number of tries to 3tries = 3while tries > 0: # ask the user for their guess guess = int(input("Enter your guess: ")) # check if the guess is co.. 2024. 12. 13. 이전 1 다음