I'm a newbie I need help

I’m starting to use Phyton3. My editor is VSCODE and I am using MACBOOK. My question is how can i run my python program and display the result on the “Output Panel” instead of the terminal panel.

Usually by that point .vscode/launch.json exists which contains the configurations for launching Python scripts and other tools. These configurations might have the setting "console": "integratedTerminal" which runs in the terminal, try switching these to "console": "internalConsole".

Thanks! :slight_smile: