run a program in python code example
Example 1: how to run python program
move to the directory where your program lies
open cmd
python first_script.py(your file name)
Example 2: how to run a code in python
>>> print('Hello World!')
>>> 2 + 5
7
>>> print('Welcome to Real Python!')
Welcome to Real Python!