Why is my code being cut into pieces?
On my project, Tortilla, whenever you attempt to play, it cuts the words. You can view my code and see what should be happening. Anybody know what to do?
Coder100
Ok, its a replit bug.
Use my super awesome function that only requires you to change how you type in input()
. Don't need to use any bad hacks
def input_(str=''): print(str, end='') return input()
put this code on the TOP of every file that uses the function.
RYANTADIPARTHI
try resizing your console, or using \n
in parts of your code.
TortillaCook
@RYANTADIPARTHI I did that.
RYANTADIPARTHI
@TortillaCook hmm, did you resize your console?
TortillaCook
@FishballNooodle Alright, I'll try it.
TortillaCook
@FishballNooodle Hey, it worked! Thanks, FishballNooodle!
FishballNooodle
@TortillaCook
Great!!!
You can mark my comment as the answer.
oxygenazeem
Thanks!!! You really helped!! You don't know how much this means to me.
I'm pretty certain this isn't a problem with your code but with replit itself. For some reason, if you try to print a lot of text at once it does this. Until they fix this bug, try printing smaller bits of text at a time
@MuffinsTheCat Thanks...