Hi, I'm mithushan. In this blog I am writing what I learn from online or other resources.

Friday, December 31, 2021

Python Programming Tutorial for Beginners

Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.Mostly It is used for web development (server-side), software development, mathematics and system scripting.
  • Python is open source programming language.
  • Python developed by Guido van Rossum.
  • Python is an interpreted, object-oriented, high-level programming language that can be used for a wide variety of applications.
  • Python is a powerful general-purpose programming language.


Advantages of Python Programming

  • Python is easy to learn and use.
  • Large number of libraries available that can be used in your projects today.
  • High Level Programming Language.
  • Huge Community
  • Object-oriented language
  • Portable across Operating systems
Before you learn in python, you need to install Python on your computer. There is multiple Python distribution available today. To download python  ---> Download Python


  • After installation Go to Search → Type IDLE → Click and open the IDLE window. or Press window button → Type IDLE → Click and open the IDLE window.
  • Click File→New in IDLE Python Shell.
  • In the new window that opens ,Type print ("Hello world") you want to save in the form of a program.
  • Click File → Save and then Save the file with an first.py. The Python program has .py extension.
  • Then click run menu → Run Module and it will execute all the command in the open file or you can press F5 key to run this script.



No comments:

Post a Comment