Как вернуться к началу - PullRequest
       4

Как вернуться к началу

1 голос
/ 09 октября 2019

Как бы это исправить:

print 'Adventure Game'

choice_1 = raw_input('You are travelling down a long road, there is a fork in the route, one side goes to a jungle, and the other leads to a hill biome, which side do you choose?            J for Jungle, H for Hill ')

if choice_1 == 'J':
    print 'Jungle?, very well then' 

elif choice_1 == 'H':
    print 'Hill, good decision'

if choice_1 == 'J':
    choice_2 = raw_input('In the jungle, a king cobra appears behind you, as you look forward, an ape leaps from a tree onto the ground. Do you take your chances with the venomous king cobra, or the enormous ape? C for cobra, A for ape ')

while choice_2 != 'A':
    print 'Sorry, you were bit by the cobra and died'
    print 'Please try again'

if choice_2 == 'A':
    break

elif choice_2 == 'A':
    print 'You were almost mauled by the ape, luckily, it fleed the scene after loosing sight of you'

я хочу, чтобы он перезапустился, если пользователь выбрал c для choice_2, и чтобы он начинался с начала каждый раз, когда это происходит

Ответы [ 3 ]

2 голосов
/ 09 октября 2019

Я бы предложил использовать функции для каждого местоположения, чтобы вы могли вызывать одну и ту же функцию несколько раз или внутри других функций.

Например:

def road():
    choice = ''
    while choice not in ['j','h']:
        choice = raw_input('You are travelling down a long road, there is a fork in the route, one side goes to a jungle, and the other leads to a hill biome, which side do you choose?            J for Jungle, H for Hill ').lower()
    if choice == 'j':
        jungle()
    elif choice == 'h':
        hill()

def jungle():
    choice = ''
    while choice not in ['c','a']:
        choice = raw_input('In the jungle, a king cobra appears behind you, as you look forward, an ape leaps from a tree onto the ground. Do you take your chances with the venomous king cobra, or the enormous ape? C for cobra, A for ape ').lower()

    if choice == 'c':
        print 'Sorry, you were bit by the cobra and died'
        print 'Please try again'
        return
    elif choice == 'a':
        print 'You were almost mauled by the ape, luckily, it fleed the scene after loosing sight of you'
        next_func_here()

while True:
    print 'Adventure Game Starts Here!'
    road()
    print 'restarting...'

Таким образом, вы можете сохранитьдобавление функций быстро и легко, а также легче отлаживать. Цикл while означает, что если road() выходит, он возвращается к началу и перезапускает road().

0 голосов
/ 09 октября 2019
print 'Adventure Game'
choice_1 = raw_input('You are travelling down a long road, there is a fork in the route, one side goes to a jungle, and the other leads to a hill biome, which side do you choose?            J for Jungle, H for Hill ')
if choice_c == 'J':
    while True:
        choice_2 = raw_input('In the jungle, a king cobra appears behind you, as you look forward, an ape leaps from a tree onto the ground. Do you take your chances with the venomous king cobra, or the enormous ape? C for cobra, A for ape ')
        if choice_2 != 'A':
            print 'Sorry, you were bit by the cobra and died'
            print 'Please try again'
        elif choice_2 == 'A':
            print 'You were almost mauled by the ape, luckily, it fleed the scene after loosing sight of you'
            break
elif choice_1 == 'H':
    print 'Hill, good decision'
0 голосов
/ 09 октября 2019

Вы можете сделать ввод внизу, который говорит: «Вы хотели бы продолжить?»и установите его в переменную. Затем оберните всю свою игру в какое-то время.

cont = True
while continue == True:
    #put all your code here
    cont = input("Would you like to continue? (T/F)")
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...