DEV Community

importostar
importostar

Posted on

Why is python so popular?

In short, the answer to this problem is that python is not just a computer programming language for geeks.

A wide range of people from different areas use it including business developers, data analysts, software testers, database managers, mathematicians, researchers etc.

Another fact is that it is very easy to learn and use and is extremely related to English.

Learn Python?

Do you want to learn the Python Programming Language?
Get free course and ebook: https://gumroad.com/l/uPjuk

free ebook

Python is a general purpose programming language, so you can make anything with it.

Features of python:

  • Object oriented
  • Strong exception handling
  • Automatic memory management
  • Easy syntax
  • Indentation based
  • Forgiving in nature
  • Dynamic
  • Strong data types

It's a great first language to learn, the syntax is simple and it's easy to get started.

For example, take a look at hello world

print("Hello world")

That's it!

A function?

def add(a,b):
    return a+b

If you don't know Python yet, it's a good skill to learn. You can make all kind of things with it, like a wallpaper downloader [1][2][3], desktop apps with python and a lot more!

Top comments (0)