Install and Run Python in Windows.
Go to python.org page on the official site and click Download Python 3.7.0 (You may see different version name).
When the download is completed, double-click the file and follow the instructions to install it.
When Python is installed, a program called IDLE is also installed along with it. It provides graphical user interface to work with Python.
Open IDLE, copy the following code below and press enter.
print("Hello, World!")
Write Python code (you can copy the code below for now) and save (Shortcut: Ctrl+S) with .py file extension like: hello.py or your-first-program.py.
print("Hello, World!")
Thank you :)
Comments
Post a Comment