Skip to main content

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

Comments

Popular posts from this blog

Hitting the Python Road. 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 Open a browser window and navigate to the  Download page for Windows  at  python.org . 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.) 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.) Sidebar: 32-bit or 64-bit Python? 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 shou...