How to setup and run your first python program in Windows OS?

In this video it shows a very simple way to setup the python environment. It also shows how to write a simple python program and run it in the environment. The complete steps can be done in 5 – 10 mins.

I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com

Python code:

print("\nHello Programmer World\n\n")

city_list = ['London', 'sydney', 'new York']

for x in city_list:
    print(x)
    print(x.title())
    print("\n\n")
    

Output

Hello Programmer World


London
London



sydney
Sydney



new York
New York

Installation App from Microsoft Store

Code File Location:

Leave a Reply