여러 번 확인 했는데도 & & 번을 두 개 이상 찾았지만 현재 이상한 이유로 인해 "Invent Your Own Computer Games w/ Python" : '이 필요함 등), 내 유형이 dragon.py
이면 IDLE에서 실행을 거부합니다.dragon.py가 실행 된 후에 오류 메시지가 표시되지 않습니다
최악의 경우 오류 메시지가 표시되지 않습니다. 그것은 단순히 "RESTART: /Users/yosemite/Documents/dragon.py"
를 표시하고 나는 다시 프롬프트에 있습니다. 그러나 사이트의 공식 버전 인 here은 완벽하게 작동합니다.
누구나 내가 뭘 잘못하고 있는지 알 수 있습니까? 업데이트 : 여기 내 코드는 이전을 포함하는 것을 잊었다 :
import random
import time
def displayIntro():
print ('You are in a land full of dragons. In front of you.')
print ('you see two caves. In one cave, the dragon is friendly.')
print ('and will share his reasure with you. The other dragon')
print ('is greedy and hungry, and will eat you on sight.')
print()
def chooseCave():
cave = ''
while cave != '1' and cave !='2':
print ('Which cave will you go into? (1 or 2)')
cave = input()
return cave
def checkCave(chosenCave):
print ('You approach the cave...')
time.sleep(2)
print ('It is dark and spooky...')
time.sleep(2)
print ('A Large dragon jumps out in front of you! He opens his jaws
and...')
print()
time.sleep(2)
friendlyCave = random.randint(1, 2)
if chosenCave == str(friendlyCave):
print('Gives you his treasures!')
else:
print('Goobles you up in onebite!')
playAgain = 'yes'
while playAgain =='yes' or playAgain == 'y':
displayIntro()
caveNumber = chooseCave()
checkCave(caveNumber)
print('Do you want to play again? (yes or no)')
playAgain = input()
코드를 게시하십시오. – FamousJameous
또한이 책에는 코드 샘플을위한 diff 도구가 있습니다. [이 페이지] (https://inventwithpython.com/diff/?p=dragon)로 이동하여 코드를 입력하고 다른 내용을 확인하십시오. – FamousJameous
StackOverflow에 오신 것을 환영합니다. [재현 가능한 예] (http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) 도움이 될 것입니다. – polka