+ 1
I keep getting this message before running my python code " looks like your program need input " what does that mean?
5 odpowiedzi
+ 2
Hmm.
You know here none of the programing languages code playground are interactive.
Si it will not ask input as it asks in your IDE here you need to give all input at once in different lines that's all
+ 1
It means your program requires input to complete execution. In your case, your program requires two input values. An example of how to input the values is shown below:
5
3
Enter your first input on the first line, then press the return key to enter the second input on the second line. Each line is an input value.
Your code had a small bug. I attached a fixed version below.
https://code.sololearn.com/c95W4nGu4ak0/#py
Hope this helps.
+ 1
Yes, so for that code you can enter as many lines as you want.
0
Thank you but that wasn't the code I wrote I put the code I actually wrote
0
Thanks