238
2017-05-20 17:47:04
0
print ("Hello World")
while True:
guess = int(input("Guess the number:"))
if guess == 5:
print ("You Win!")
break
else:
if guess > 5:
print("Too high")
else:
print("Too low")
print("Game Over!")
윗분처럼 하시거나 아예 이렇게 하는 방법도 있습니다.
어디서 보고 배우시는건지는 모르겠지만 좀 애매하네요 ㅋㅋ
hello 가 hellow로 둔갑한것 부터가 아리송한데..