Python tutorials for beginners
Getting started with python:
What is Python:
Python is a general purpose programming language created by Guido Van Rossum. Python is most praised for its elegant syntax and readable code, if you are just beginning your programming career python suits you best. With python you can do everything from GUI development, Web application, System administration tasks, Financial calculation, Data Analysis, Visualization and list goes on.
Python is interpreted language
Yes, python is interpreted language, when you run python program an interpreter will parse python program line by line basis, as compared to compiled languages like C or C++, where compiler first compiles the program and then start running.Now you may ask, so what’s the difference ??
Difference is that interpreted languages are little bit slow as compared to compiled languages. Yes, you will definitely get some performance benefits if you write your code in compiled languages like C or C++.
But writing codes in such languages is a daunting task for beginner. Also in such languages you need to write even most basic functions like calculate the length of the array, split the string etc. For more advanced tasks sometimes you need to create your own data structures to encapsulate data in the program. So in C/C++ before you actually start solving your business problem you need to take care of all minor details. This is where python comes, in python you don’t need to define any data structure, no need to define small utility functions because python has everything to get you started.
Moreover python has hundreds of libraries available at https://pypi.python.org/ which you can use in your project without reinventing the wheel.
Python is Dynamically Typed
In python you don’t need to define variable data type ahead of time, python automatically guesses the data type of the variable based on the type of value it contains.For e.g
Python is strongly typed
If you have programmed in php or javascript. You may have noticed that they both convert data of one data type to other data type automatically.For e.g:
in JavaScript
will produce an error.
Write less code and do more
Python codes are usually 1/3 or 1/5 of the java code. It means we can write less code in Python to achieve the same thing as in Java.In python to read a file you only need 2 lines:
Who uses python:
Python is used by many large organization like Google, NASA, Quora, HortonWorks and many others.Okay what i can start building in python ?
Pretty much anything you want. For e.g
- GUI application.
- Create Websites.
- Scrape data from website.
- Analyse Data.
- System Administration Task.
- Game Development.
In the next post we will learn how to Install Python