Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions choose_your_own_adventure.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

if answer == "left":
answer = input(
"You come to a river, you can walk around it or swim accross? Type walk to walk around and swim to swim accross: ")
"You come to a river, you can walk around it or swim accross? Type walk to walk around or swim to swim accross: ")

if answer == "swim":
print("You swam acrross and were eaten by an alligator.")
print("You swam across and were eaten by an alligator.")
elif answer == "walk":
print("You walked for many miles, ran out of water and you lost the game.")
else:
Expand Down