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
Python
Coder100You 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