Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Jaysc73LT1

@Jaysc73LT1
Jaysc73LT1
Jaysc73LT1
shared a Post
3 years ago
HELP
I need some help with this repl it's supposed to be a choose your own adventure game, but the first question is mashed up when you play it. can someon
MY FIRST REPL
Python
Coder100
Coder100
You have to print the text first before you do input due to a repl bug. First, add this function to the top of the file: def repl_inp(text = ''): print(text, end = '') return input() And then you just treat that as your new input: repl_inp("hi there") `3 years ago