Please check to make sure there are no error and program work perfectly

I made a choose your own adventure story

please check and make sure there are no error

here is the link

once you have checked the program please take this poll

Program complies with out errors max choice 4
  • yes
  • there are runtime errors
  • there are syntax errors
  • there are indentation errors
  • theres a different type of error

0 voters

User chooses the results of the program. Meaning the program does not decide what happens, the user does.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

0 voters

use conditional statements to get through a decision tree rate between 1 and 10
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

0 voters

The user has the opportunity to make 7 decisions if they choose the right path.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

0 voters

commented properly and code is clean
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

0 voters

once done with poll please leave comment below

Thanks for your time i appreciate it

hey, the code could have been much cleaner, instead of using a million "or"s for different capitalization, just use .lower()

for the sake of consistency I think you should have used either only single quotes (apostrophes ’ ') or only double quotes (" ")

I know you add spaces in between the \n for the sake of readability in the code but it just looks really weird when you run the code

after a choice you could also use a colon (:), newline (\n), or even a space

the grammar is also kinda trash, there are like a million places where you should have used “you’re” instead of “your”

thanks you for giving me this feedback :smile:

for the spaces after \n for readability, maybe do

"""line 1
line 2"""

And, you can simplify your ors also by using pyspellchecker · PyPI to account for spelling mistakes and use the in operator, e.g.choice in {"1", "2", "3"}

1 Like

thanks you for your comment i appreciate it

1 Like