In powershell, when I run a python program with:
> python hello.py
The program runs and prints any output directly in the powershell window I'm working in. But when I try to do it without explicitly invoking python:
> hello.py
it opens up a separate window. How can I fix that so it behaves the same way it does when I invoke python explicitly?