2017-05-19 14 views
0

여러 번 확인 했는데도 & & 번을 두 개 이상 찾았지만 현재 이상한 이유로 인해 "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() 
+6

코드를 게시하십시오. – FamousJameous

+4

또한이 책에는 코드 샘플을위한 diff 도구가 있습니다. [이 페이지] (https://inventwithpython.com/diff/?p=dragon)로 이동하여 코드를 입력하고 다른 내용을 확인하십시오. – FamousJameous

+0

StackOverflow에 오신 것을 환영합니다. [재현 가능한 예] (http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) 도움이 될 것입니다. – polka

답변

0

코드는 수입을 한 번 들여 제대로, 두 개의 모듈을 기록, 종료 다음 세 가지 기능을 정의합니다. 프로그램이 종료 될 때 프롬프트를 표시하는 것은 IDLE이 수행해야하는 작업입니다.

끝에 다음 함수 호출을 추가하면 실행이 시작됩니다.

python -i /Users/yosemite/Documents/dragon.py 

checkCave (chooseCave())

당신이에서 프로그램을 실행 한 경우 MAC (?) 콘솔은 같은 행동을하는 >>> 프롬프트의 모양을 볼 것입니다.