Home > Software engineering >  Cant type in output terminal python
Cant type in output terminal python

Time:10-04

i am trying to run a simple input program but I cant type in the output terminal.Thanks enter image description here

CodePudding user response:

Code Runner shows results in OUTPUT and doesn't accept inputs by default. Add

"code-runner.runInTerminal": true

in Settings.json, then you can input data.

CodePudding user response:

I believe that you are using a output only terminal try changing the settings or use a different text editor or run your code using you laptop terminal (macOS), command prompt (Windows) etc.

  • Related