Skip to main content

Hitting the Python Road.

5 reasons you should learn Python now
To start programming with Python we need a computer (desktop or laptop) and either Python 2.x or 3 installed or smartphone.
We will be working with python 3
To install Python3 on our windows computer, follow the step below:

Step 1: Download the Python 3 Installer

  1. Open a browser window and navigate to the Download page for Windows at python.org.
  2. Underneath the heading at the top that says Python Releases for Windows, click on the link for the Latest Python 3 Release - Python 3.x.x. (As of this writing, the latest is Python 3.6.5.)
  3. Scroll to the bottom and select either Windows x86-64 executable installer for 64-bit or Windows x86 executable installer for 32-bit. (See below.)
For Windows, you can choose either the 32-bit or 64-bit installer. Here’s what the difference between the two comes down to:
  • If your system has a 32-bit processor, then you should choose the 32-bit installer.
  • On a 64-bit system, either installer will actually work for most purposes. The 32-bit version will generally use less memory, but the 64-bit version performs better for applications with intensive computation.
  • If you’re unsure which version to pick, go with the 64-bit version.
Note: Remember that if you get this choice “wrong” and would like to switch to another version of Python, you can just uninstall Python and then re-install it by downloading another installer from python.org.

Step 2: Run the Installer

Once you have chosen and downloaded an installer, simply run it by double-clicking on the downloaded file. A dialog should appear that looks something like this:
Windows installation dialog
Then just click Install Now. That should be all there is to it. A few minutes later you should have a working Python 3 installation on your system.

Android (Phones & Tablets)

If you have an Android tablet or phone and want to practice Python on the go, there are a several options available. The one that we found most reliably supports Python 3.6 is Pydroid 3.
Pydroid 3 features an interpreter you can use for REPL sessions, and it also provides the ability to edit, save, and execute Python code:
Pydroid 3 editor
You can download and install Pydroid 3 from the Google Play store. There is a free version and also a paid Premium version which supports code prediction and code analysis.

Daniel Tano

Comments

Popular posts from this blog

First Python Program Python comes preinstalled with an integrated development environment(IDE) known as IDLE But we can install any IDE of our choice, for this we will be using sublime text Click  https://www.sublimetext.com/download  to download sublime text Double click on the downloaded executable files to install it. Python IDLE Python IDLE ( Integration Development  Environment ) is the Python IDE that comes with the Python distribution. Python IDLE is also known as interactive interpreter. It has a number of features such as text editor with syntax highlighting, smart indent and auto completion, etc., that help you work with Python quickly. The following illustrates how to launch Python IDLE and write the Python code inside the text editor: Launch Python IDLE Launch Python IDLE New Python Shell window will display as follows: Python IDLE Enter the following code and press Enter ,  the message “Hello World” will di...
Why Python? Python is one of the most easiest programming language to learn. It is one of the widely used programming language because of it many library which makes programming with it easy and friendly. It has external code called Modules which we can easily import into our code (we shall come to that) Writing your first program with other language might take upto 5 minute (setting up the environment and coding) but with Python we need less than 30 second and just one line of code. Programming with Python is fast and easy as compare to other languages. Daniel Tano