2 Respuestas
+ 1
maybe you think for something like this?
input("please enter a/n...:" )
+ 1
Sololearn runs your Python program as a background batch job. In order give it input, the batch job must read input from a file. By design, batch jobs cannot be interactive with a console. So, before running your program, the script that submits the batch job scans your source code for input keywords. If it finds any, then it prompts you for the input and stores your entries into the file that is later provided to the batch job at run time. Because the input is gathered before runtime, it does not know what the prompt should be. It just asks generically for you to enter whatever the program may expect as input.