DEV Community

kamula
kamula

Posted on • Updated on

Introduction to Python

python
Python is a programming language created by Guido van Rossum and it was released in 1991.
The language is used in

  • Server side web development using frameworks like Django or Flask
  • Science and mathematics using tools like scipy or Pandas
  • Desktop GUIs using the TK GUI library
  • Software Development using various python tools like Scons,Buildbot or roundup
  • Business applications The functions stated above are just among the few areas where Python is used.

Why use Python?

  • Python runs on multiple platforms (Windows, Linux,Mac etc)
  • Python has a very simple syntax, It was designed for readability and it has some similarities to the English language
  • Python supports functional programming, procedural programming and Object Oriented Programming

First Python Program (Hello World)

Steps:

  • Install Python in your pc
  • Open your favourite IDE and paste this line of code: print("Hello, World!"). The output should be Hello, World!

Python is easy to pick up whether you're a first time programmer or you're experienced with other languages. Visit the official Python site for more information.

Top comments (0)