My code works fine but when I move it to solo learn to share it gives me EOFError. Please help!
So this is my first project ever. I have been using solo learn to learn python. I decided to do a number guessing game to test my abilities. I didn't use any outside sources or anything so I'm really proud of it and want to share it, but when I copy and paste the code it gives me an EOFError. This is really strange because on the app I used to write it it works perfectly but on solo learn playground it gives me this error. The error happens on a part of the code where I ask for the user input like so: def next_guess(): global player global answer while player != answer: player = int(input()) right_or_wrong() This works fine on the other app but on solo learn it says the player = int(input)()) line is wrong. Please help me if you can because I really want to share :)