π Python Programming Language π
Introduction to Python
Python is the world's fastest-growing programming language.
It's also one of the languages that I recommend for the beginner to start with.
Python is popular among Software Engineers, Mathematicians, Data Analysts, Scientist, Accountants, Network Engineers, even kids.
Let's look at three fundamental questions for a python neophyte.
Why Python so Special ???
Here are the six reasons that make python so special.
Reason 1. Python can solve complex problems in less amount of time with fewer lines of codes than any other programming language.
For Ex. In java to print Hello world, we have to write
class Hello
{
public static void main (String args[])
{
System.out.println("Java Hello World");
}
}
But in Python, it's just
print("Hello World")
That's why huge companies like Google, Spotify, Dropbox, and Facebook have embraced this beautiful and powerful language.
Reason 2. Python is a multi-purpose programming language and you can use it for a wide range of jobs like Data Analysis, AI / ML, Automation, Web Apps, Desktop App, Testing and even Hacking so if you want a high-paying long-lasting career in any of these areas especially AI and ML Python is the language to put those opportunities at your fingertips in fact according to indeed.com the average salary of a python developer in the US was over one hundred fifteen thousand dollars in march 2018. It is the world sexiest job of the 21st century.
Reason 3. Python is a High-Level Programming Language. So, you don't need to worry about complex tasks, such as memory management as we do in C++.
Reason 4. Python is Cross-Platform, which means we can build and run Python apps on windows, Mac and Linux.
Reason 5. Python has a huge community so whenever you stuck somewhere in code there is always someone to help you out.
Reason 6. Python has a large eco-system of libraries frameworks and tools.
What is Python ???
| Guido Van Russom |
Python is an interpreted, high-level, general-purpose programming language. It has been around 20 Years. It was developed by Guido van Russom. It was first released in 1991.
Naming Python is derived from the British comedy group Monty Python Flying Circus,
Who can learn Python ???
Absolute beginners, I mean someone who has never coded before in python or any other programming language for that matter can learn python.
For Python Basics
On this page, you will find the fundamental concepts for the Python beginner that will help you get started on your journey to learn python.
Bonus
Highly Recommended pages for beginners Automate the Boring Stuff with Python, Python Jumpstart by building 10 Apps
Google's Python Class: Slightly more advanced, including hours of useful lecture videos and downloadable exercises (with solutions).
Introduction to Python: A series of IPython notebooks that do a great job explaining core Python concepts and data structures.
A Crash Course in Python for Scientists: Read through the Overview section for a very quick introduction to Python.
Python Tutor: Allows you to visualize the execution of Python code.

Comments
Post a Comment