0% found this document useful (0 votes)
9 views

Python Language (Holiday Homework) - Bhaavya Hari

Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Python Language (Holiday Homework) - Bhaavya Hari

Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 10

PYTHON

BHAAVYA HARI
CLASS 8F
HOLIDAY
HOMEWORK
INTRODUCTION

 Python is one of the most popular computer


programming languages in the world.
 It is used to build millions of apps, games, and
websites.
 Python is a great language for text-based
computer programming.
History of Python Language

 Python was created by Guido van Rossum, and


first released on February 20, 1991.
 Thename of the Python programming
language comes from an old BBC television
comedy sketch series called Monty Python's
Flying Circus.
Where is Python used ?

 Data Science
 Data Analysis
 Machine Learning
 Data Engineering
 Web Development
 Software Development
Features Of Python Language

 Python is high-level and a free and open


source language.
It is an interpreted language.
Python is case sensitive.
Python is portable and platform –
independent .
Versions of Python Language

 Python Version  Released Version


 Python 1.0  January 1994
 Python 2.7  July 3, 2010
 Python 3.0  December 3,2008
 Python 3.7  June 27, 2018
 Python 3.8  October 14, 2019
Why should we use
Python?
 Python's unique blend of simplicity, readability, extensive
libraries, and a supportive community makes it a preferable
choice among other programming languages.
 Python finds applications in a diverse range of fields, including
web development, data analysis, artificial intelligence,
automation, scientific computing , etc.
 Python is used by Intel, IBM , NASA , Pixar , Netflix ,
Facebook, Spotify and a number of other massive companies.
Basics of Python Language

 Variable
A variable is a named variable location which stores value that can be used later .
A variable is a name which refers to a value and an assignment statement that is used to create
a new variable , as soon as the value is assigned a variable is declared.
 Operators
Operators are special symbols which represent computation which are applied on operands
which can be values or variables. An expression is created when operators are applied on
operands .
For example , x = a + b. Here, = and + are operators.
 Operands
For example, x=a + b. Here, x , a and b are operands.

You might also like