Adventure Game

# My Name
print('Welcome to My Adventure Game!')
print('Written by me')
print('You travel back in time to a land far away.')
print('Try to survive until you can get home!')
print('Available options are in CAPITAL letters or numbers')
print('Any other options exits the program')
print('OPTIONS: LOOK around')
go = input(':: ')
if go == 'LOOK':
    print('right here')
    print('OPTIONS: crawl out LEFT or RIGHT')
    crawl = input(':: ')
    if crawl == 'LEFT':
        print('right here')
        print('You survived!')
    elif crawl == 'RIGHT':
        print('write here')
        print('You did not survive')
else:
    print('You can only do actions given')
    print('Try again')

Sample Rubric

Last updated