I\'m trying to learn python but have some problem running source files from power shell. When I type \'python\' it opens up and I can type python commands directly in the sh
If you started by typing "python" in powershell you will need to get out of that script.
python
powershell
If you are in python type:
quit() then type python myfile.py
quit()
python myfile.py
This should work if your python is installed correctly.