I need help with python?

My problem is when i type python in the powershell it takes me to microsoft store to download the python 3.10.I have already installed python 3.6 on my laptop. Again setting up ,after typing ex1.py in atom.


When i go to powershell to run it .I have problems too, any help ?

To avoid the obvious, are you sure that ex1.py exists in your directory? Your command prompt is showing Users\chica

Have you created a folder you need to cd into? The error may be that no python file is found, rather than Python not being installed.

You need to call python first. So try this:
python ex1.py

Rather than only ex1.py. Otherwise Windows doesn’t know what you want to do with this file.