Download & Installation of Python on Windows | Python for Beginners

Download & Installation of Python on Windows | Python for Beginners


To download and install Python on Windows, follow these steps:


Visit the official Python website at https://www.python.org/ and click on the Download Python button.


On the download page, select the latest version of Python and choose the installer for your operating system, either 32-bit or 64-bit.


Save the installer file to your computer and run it to start the installation process.


Follow the prompts in the installer to accept the terms and conditions and select the installation options. Be sure to select the option to add Python to your system PATH, which will allow you to run Python from the command line.



Once the installation is complete, open the command prompt and type "python" to launch the Python interpreter. This will allow you to enter and run Python code directly from the command line.


To verify that Python is installed correctly, type the following command at the interpreter prompt:


Copy code


import sys

print(sys.version)


This should print the version of Python that you have installed on your system.


That's it! You have successfully installed Python on your Windows computer and are ready to start learning and using the language.

Comments