2016-12-31 57 views
-1

我在python中構建了一個簡單的文本遊戲來展示一個朋友,它在shell中運行良好,但在終端中出錯。 python中的shell和shell編譯有區別嗎?終端上的Python 3與shell不同?

殼,這是發生了什麼: test is an invalid input, so it asks you to type one of the answers and then when typing yes it continues

但在終端它給了我這個錯誤: enter image description here

有沒有道理呢?

我的代碼:

"""""~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~IMPORT PACKAGES~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~""""" 

from random import randint 
import os 
import copy 
import math 
import time 
import pickle 
import platform 
import subprocess as sp 

"""""~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~LOAD DATA/NEW GAME~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~""""" 

newData = {"assassin" : {'hp' : 100, 'atk' : 250, 'lvl' : 1, 'arm' : 0, 'pow' : {'name' : 'surprise attack', 'lvl' : 0}, 'xp' : 0}, 
          "mage" : {'hp' : 100, 'atk' : 200, 'lvl' : 1, 'arm' : 0, 'pow' : {'name' : 'fire','lvl' : 0}, 'xp' : 0}, 
          "knight" : {'hp' : 100, 'atk' : 150, 'lvl' : 1, 'arm' : 10, 'pow' : {'name' : 'dodging','lvl' : 0}, 'xp' : 0}, 
          "healer" : {'hp' : 500, 'atk' : 50, 'lvl' : 1, 'arm' : 0, 'pow' : {'name' : 'healing','lvl' : 0}, 'xp' : 0}} 


if platform.system()=='Windows': 
    file = 'filepath' 
elif platform.system()=='Darwin': 
    file = 'filepath' 

"""Clears screen""" 
clear = lambda: os.system('cls' if platform.system()=='Windows' else 'clear') 

print('Load data?') 

while True: 
    answer = input() 


    if answer == 'yes': 
     load_file = open(file, 'rb') 
     characterData = pickle.load(load_file) 
     load_file.close() 
     break 
    elif answer == 'no': 
     print('Starting a new game...') 
     time.sleep(0.5) 
     characterData = copy.deepcopy(newData) 
     save_file = open(file, 'wb') 
     pickle.dump(characterData, save_file) 
     save_file.close() 
     break 
    else: 
     print('That input cannot be deciphered. Please type "yes" or "no".') 

回答

5

它看起來像你使用Python 3.X的外殼但是Python 2.x的是在終端使用。在兩個版本的Python中,input()函數的行爲有所不同。

只要確保您在終端中使用Python 3.x。如果您同時需要Python 2.x,請將input()更改爲raw_input()