0
I donât understand the output.
I donât understand the output. It shows just a plain box and thereâs nothing I can do. It doesnât look like Pycharm. Can someone explain to me how to make my input? Hereâs the code: https://code.sololearn.com/cEMWd2a2x7bP/?ref=app
3 RĂ©ponses
+ 3
SoloLearn Code Playground doesn't support interactive input/output. If your code requires interactive input/output then you can run it in your favourite editor (you mentioned pycharm)
https://code.sololearn.com/WhiNb9BkJUVC/?ref=app
0
You can use input() function.
For example:
N = input()
Your input will be saved to N variable
0
Works fine outside of SoloLearn. However, like someone already mentioned, Code Playground doesn't support interactive inputs.
If you keep track of all of your inputs and enter them line by line, it works fine on here as well.
Like:
1
1
1
5
Will jump into your addition function, add 1 + 1 and then, exits on the next loop as it should.
Unfortunately, most languages don't get any love outside of web scripting languages on here lol but it has a lot more to do with the setup of each code with the editor's technically being ran based on a web-based design.