How to Install Python 3.8 In Windows
Step 1: Install Python 3.8
You can now start the installation of Python by clicking on Install Now:Note that depending on your needs, you may also check download pythonthe box to add Python to the Path.
Your installation should now begin:After a short period of time, your setup would be completed:
Now In your Windows Python is Installed:
How To Run a Code in Python:
You can run a code in Python via the Python IDLE.
A quick way to find your Python IDLE on Windows is by clicking on the Start menu. You should then see the IDLE under “Recently added”
A quick way to find your Python IDLE on Windows is by clicking on the Start menu. You should then see the IDLE under “Recently added”
Once you click on the Python IDLE, you would then see the Shell screen:
Now You Can Type a Program And Save The File:
Choose a location where the Python file will be saved on your computer.
You’ll also need to type a name for your file. For example, I named the
file as “Test”
Once you’re done, press Save, and you would then see the “Hello World” expression printed on your Python Shell:
Thank You...