1

コードで再帰を使用していないので、再帰に関するエラーが発生する理由がわかりません。.................................................。 ........................................。

コードは次のとおりです。

from os import system
from time import sleep
import msvcrt 

player_location = [0, 0]
player_dir = [0, 0]
width = int(raw_input('Width:'))
height = int(raw_input('Height:'))

def get_input():
    if msvcrt.kbhit():
        return msvcrt.getch()
    else:
        return ''

def update_screen():
    global player_location
    system('cls')
    for i in range(0, (height-1)):
        if i == player_location[0]:
            print (' ' * (player_location[1] - 1)) + 'X' + (' '*(width*2 - player_location[1] - 1)) + '|'
        else:
            print (' ' * width * 2) + '|'
    print ('-' * width * 2) + '+'

 def get_input():
    global player_dir
    player_dir = [0, 0]
    inp = get_input()
    if inp == 'q':
        exit()
    elif inp == 'w':
        player_dir[0] = -1
    elif inp == 's':
        player_dir[0] = 1
    elif inp == 'd':
        player_dir[1] = 1
    elif inp == 'a':
        player_dir[1] = -1

def actions():
    global player_dir, player_location
    player_location[0] += player_dir[0]
    player_location[1] += player_dir[1]

if __name__ == '__main__':
    while True:
        update_screen()
        sleep(10)
        get_input()
        actions()

エラーは次のとおりです。

Traceback (most recent call last):

次に、この行を何度も繰り返します。

  File "C:\Python\txtpltfrmr.py", line 29, in get_input
    inp = get_input()

そして、この行:

RuntimeError: maximum recursion depth exceeded
4

1 に答える 1

7
def get_input():
    if msvcrt.kbhit():
        return msvcrt.getch()
    else:
        return ''

def get_input():
    global player_dir
    player_dir = [0, 0]
    inp = get_input() # INFINITE RECURSION, CALLS ITSELF

あなたの問題があります。get_input一致するシグニチャで呼び出される2つの関数があります。それらの1つ、おそらく最初のものをのような名前に変更しますget_character

于 2013-01-13T20:34:42.977 に答える