Skip to main content

Get python

The most up-to-date and current source code, binaries, documentation, news, etc., is available on the official website of Python click here
You can download Python documentation from here The documentation is available in HTML, PDF, and PostScript formats.
windows Installation Here are the steps to install Python on Windows machine.

  • Open a Web browser and go to https://www.python.org/downloads/.
  • Follow the link for the Windows installer python-XYZ.msi file where XYZ is the version you need to install.
  • To use this installer python-XYZ.msi, the Windows system must support Microsoft Installer 2.0. Save the installer file to your local machine and then run it to find out if your machine supports MSI.
  • Run the downloaded file. This brings up the Python install wizard, which is really easy to use. Just accept the default settings, wait until the install is finished, and you are done.

Comments

Popular posts from this blog

Why to Learn Python?

Python  is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. Python  is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. I will list down some of the key advantages of learning Python: Python is Interpreted   − Python is processed at runtime by the interpreter. You do not need to compile your program before executing it. This is similar to PERL and PHP. Python is Interactive   − You can actually sit at a Python prompt and interact with the interpreter directly to write your programs. Python is Object-Oriented   − Python supports Object-Oriented style or technique of programming that encapsulates code within objects. Python is a Beginner's Language ...