how can call python in cmd code example
Example 1: how to run python in cmd
$ python3 hello.py
Hello World!
Example 2: how to run python program
move to the directory where your program lies
open cmd
python first_script.py(your file name)
$ python3 hello.py
Hello World!
move to the directory where your program lies
open cmd
python first_script.py(your file name)