01: I am Python

Python is an open-source and multi-purpose programming language created by Guido van Rossum and first released in 1991. It is free and Python source code is also available under the GNU General Public License (GPL). You can develop a Desktop application or Web Application in Python.
  • Python is Interpreted − Python statements are one-by-one executed by interpreter at runtime.  Its programs are not complied like C or C++. Python is similar to  PERL and PHP.
  • Python is Interactive – Developer can communicate with the Python prompt and execute a python statement without writing a full program.
  • Python is Object-Oriented − Python supports Object-Oriented concepts for Modularity  and Reusability of code.
  • Portable- Python codes can be run on multiple platforms like Window, Unix, Linux, Macintosh etc
Usage:

It is used for web development,software development, data analysis, game development and also use for machine learning and artificial intelligence.

Cross Platform

Python is available and can run on various operating systems such as Mac, Windows, Linux, Unix etc. This makes it a cross platform and portable language.It is free to download and easy to install.

Database

Being a Web framework, Python includes a lightweight database called SQLite so you won’t need to set up a database just yet.

DJango

It is a free and open source web application framework, written in Python. It is used to make python web applications

Prerequisites

Student  should have basic understanding of a computer programming language.   Trainee should know terminologies like statement, variables, loops, function etc.

PPT

First Program “Hello Python”

print("Hello, Python!")

Output at the console will be 
Hello, Python!

Sample Programs ( GIT)