PRESENTATION ON
PYTHON
NAME – AMIT SINGH
UNIVERSITY ROLL NO - 14501221093
TOPIC – INTRODUCTION TO
PYTHON
CONTENT-
 INTRODUCTION
 ORIGIN
 FEATURES
 INDENTATION
 VARIABLES
 OPERATORS
 DATATYPES
 DECISION MAKING
 CONTROL FLOW
 FUNCTIONS
 OOPS
 CONCLUSION
INTRODUCTION
 Python is an open source , general purpose programming language that is easy to
read .
 It is an interpreted language , which do not need to be compiled to run .
 Python is high level language that will make a programmer focus on what to do
instead of how to do .
 Python has been designed to emphasize on code readability with its significant use
of whitespace .
 Writing programs in python is less time consuming compared to any other
languages .
ORIGIN
SIR GUIDO VAN ROSSUM
Python is an interpreted high-level
programming language for general-
purpose programming .Created by
“GUIDO VAN ROSSUM “ and first
released in 1991. Python has a design
philosophy that emphasizes code
readability. Notable using significant
white space .it provides construct the
enable clear programming on both
small an large scales .
FEATURES
 Easy to code
 Free and open source
 Object and oriented language
 Gui programming support
 High-level language
 Extensible feature
 Python is portable language
 Python is integrated language
INDENTATION
Indentation is a very important concept of python because without proper indenting
the python code , you will end up seeing INDENTATION ERROR and the code will not
get compiled .
Python indentation is a way of telling a python interpreter that the group of
statements belongs to a particular block of code . A block is a combination of all
these statements . Block can be regarded as the grouping of statements for a specific
purpose .
VARIABLES
Variables are nothing but reserved memory locations to store values .
This means that when you create a variable you reserve some space in memory .
Example :-
X=5
Y=“john”
print(x)
print(y)
OPERATORS
Operators are used to perform operations on variables and operators are the main
building block of any programming language . Operators allow the programmer to
perform different kinds of operations on operand values .
Example :-
print (10+5)
 Python divides the operators in the following groups:-
 Arithmetic operators
 Assignment operators
 Comparison operators
 Logical operators
 Identity operators
 Membership operators
 Bitwise operators
DATATYPES
Data types are the classification or categorized of data items . Pythons supports the
following built-in data types
Following are the standard or built –in data types of python :-
 Numeric
 Sequence type
 Boolean
 Set
 Dictionary
DECISION MAKING
Decision in a program are used when the program has conditional choices to execute
a code block . Let’s take an example of traffic lights , where different colors of lights lit
up in different situations based on the conditions based on the conditions of the road
or any specific rule .
 IF STATEMENT
 IF - ELSE STATEMENT
 NESTED IF STATEMENTS
 IF – ELIF LADDER
CONTROL FLOW
Loops in programming come into use when we need to repeatedly Execute a block of
statements . For example : Suppose we want to print “HELLO WORLD” 10 times . This can be
done with the help of loops . The loops in python are :-
 While and while-else loop
 For and for-else loop
FUNCTIONS
 Functions are generally the block of codes or statements in a program that gives
the User the ability to reuse the same code which ultimately saves the excessive
use of memory ,acts as a time saver and more importantly . Provides better
readability of the Code .
 So basically , a function is a collection of statements that perform some specific
task and return the result to the caller .
 A function can also perform some specific task without returning anything .
OOPS
 Object – oriented programming (OOP) is a method of structuring a program by bundling related
properties and behaviors into individual object .
Class
 A class is a blueprint for the object . We can think of class as a sketch of a parrot witg labels . It
contains all the details about the name , colors , size etc.
Object
 An object (instance) is an instantiation of a class . When class is defined , only the description for
the object is defined . Therefore , no memory or storage is allocated .
CONCLUSION
At last we want to say that , python is a fully-fledged programming language. Any
code you can download the python package index, or anywhere else , can be
malicious and would almost certainly go unnoticed by most people’s firewalls .
PRESENTATION ON PYTHON.pptx

More Related Content

PPTX
Python presentation of Government Engineering College Aurangabad, Bihar
PPT
FALLSEM2022-23_ITA3007_ETH_VL2022230100613_Reference_Material_I_23-09-2022_py...
PPTX
bhaskars.pptx
PDF
Python_Programming_PPT Basics of python programming language
PDF
Summer Training Project.pdf
PPTX
2024-25 TYBSC(CS)-PYTHON_PROG_ControlStructure.pptx
PDF
Python Module-1.1.pdf
PPTX
Introduction-to-Python-for-better-knowledge-
Python presentation of Government Engineering College Aurangabad, Bihar
FALLSEM2022-23_ITA3007_ETH_VL2022230100613_Reference_Material_I_23-09-2022_py...
bhaskars.pptx
Python_Programming_PPT Basics of python programming language
Summer Training Project.pdf
2024-25 TYBSC(CS)-PYTHON_PROG_ControlStructure.pptx
Python Module-1.1.pdf
Introduction-to-Python-for-better-knowledge-

Similar to PRESENTATION ON PYTHON.pptx (20)

PPTX
python programming ppt-230111072927-1c7002a5.pptx
PPTX
Introduction-to-Python-Programming1.pptx
PPTX
Python PPT by Sushil Sir.pptx
PPTX
Presentation new
PPTX
python introduction initial lecture unit1.pptx
PDF
Unit1 pps
PPT
Pythonintroduction
PPTX
python-presentationpython-presentationpython-presentation.pptx
PPT
Python - Module 1.ppt
PDF
Computer Related material named Phython ok
PDF
Py-Slides- easuajsjsjejejjwlqpqpqpp1.pdf
PPT
notwa dfdfvs gf fdgfgh s thgfgh frg reggg
PDF
Python Programming Part 1.pdf
PDF
Python Programming Part 1.pdf
PPTX
python presntation 2.pptx
PPTX
PYTHON PPT.pptx
PPT
Py-Slides-1.ppt1234444444444444444444444444444444444444444
PPT
program on python what is python where it was started by whom started
PPT
Python slides for the beginners to learn
PPT
Python Over View (Python for mobile app Devt)1.ppt
python programming ppt-230111072927-1c7002a5.pptx
Introduction-to-Python-Programming1.pptx
Python PPT by Sushil Sir.pptx
Presentation new
python introduction initial lecture unit1.pptx
Unit1 pps
Pythonintroduction
python-presentationpython-presentationpython-presentation.pptx
Python - Module 1.ppt
Computer Related material named Phython ok
Py-Slides- easuajsjsjejejjwlqpqpqpp1.pdf
notwa dfdfvs gf fdgfgh s thgfgh frg reggg
Python Programming Part 1.pdf
Python Programming Part 1.pdf
python presntation 2.pptx
PYTHON PPT.pptx
Py-Slides-1.ppt1234444444444444444444444444444444444444444
program on python what is python where it was started by whom started
Python slides for the beginners to learn
Python Over View (Python for mobile app Devt)1.ppt
Ad

More from AmitSingh770691 (10)

PPTX
Internet.pptx
PPTX
Presentation on entrepreneurship.pptx
PPTX
INTRODUCTION TO DATA STRUCTURE.pptx
PPTX
C vs JAVA.pptx
PPTX
DSS (“DATA, INFORMATION & KNOWLEDGE”).pptx
PPTX
SE(Computer Based Information Systems (CBIS)).pptx
PPTX
c vs java (2).pptx
PPTX
FUNCTIONS OF OPERATING SOFTWARE.pptx
PPTX
DBMS(Network_Data_Model).pptx
PPTX
CLOUD COMPUTING.pptx
Internet.pptx
Presentation on entrepreneurship.pptx
INTRODUCTION TO DATA STRUCTURE.pptx
C vs JAVA.pptx
DSS (“DATA, INFORMATION & KNOWLEDGE”).pptx
SE(Computer Based Information Systems (CBIS)).pptx
c vs java (2).pptx
FUNCTIONS OF OPERATING SOFTWARE.pptx
DBMS(Network_Data_Model).pptx
CLOUD COMPUTING.pptx
Ad

Recently uploaded (20)

PPTX
WJQSJXNAZJVCVSAXJHBZKSJXKJKXJSBHJBJEHHJB
PPTX
Lesson-3-Operation-System-Support.pptx-I
PDF
Module 1 - Introduction to Generative AI.pdf
PPTX
FLIGHT TICKET API | API INTEGRATION PLATFORM
PPTX
Comprehensive Guide to Digital Image Processing Concepts and Applications
PPTX
Why 2025 Is the Best Year to Hire Software Developers in India
PPTX
Chapter_05_System Modeling for software engineering
PDF
How to Write Automated Test Scripts Using Selenium.pdf
PPTX
Relevance Tuning with Genetic Algorithms
PPTX
Bandicam Screen Recorder 8.2.1 Build 2529 Crack
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
PPTX
UNIT II: Software design, software .pptx
PDF
How to Set Realistic Project Milestones and Deadlines
PPTX
ESDS_SAP Application Cloud Offerings.pptx
PDF
Mobile App for Guard Tour and Reporting.pdf
PDF
Ragic Data Security Overview: Certifications, Compliance, and Network Safegua...
 
PPTX
Independent Consultants’ Biggest Challenges in ERP Projects – and How Apagen ...
PDF
Multiverse AI Review 2025_ The Ultimate All-in-One AI Platform.pdf
PPTX
StacksandQueuesCLASS 12 COMPUTER SCIENCE.pptx
PDF
OpenEXR Virtual Town Hall - August 2025
WJQSJXNAZJVCVSAXJHBZKSJXKJKXJSBHJBJEHHJB
Lesson-3-Operation-System-Support.pptx-I
Module 1 - Introduction to Generative AI.pdf
FLIGHT TICKET API | API INTEGRATION PLATFORM
Comprehensive Guide to Digital Image Processing Concepts and Applications
Why 2025 Is the Best Year to Hire Software Developers in India
Chapter_05_System Modeling for software engineering
How to Write Automated Test Scripts Using Selenium.pdf
Relevance Tuning with Genetic Algorithms
Bandicam Screen Recorder 8.2.1 Build 2529 Crack
Understanding the Need for Systemic Change in Open Source Through Intersectio...
UNIT II: Software design, software .pptx
How to Set Realistic Project Milestones and Deadlines
ESDS_SAP Application Cloud Offerings.pptx
Mobile App for Guard Tour and Reporting.pdf
Ragic Data Security Overview: Certifications, Compliance, and Network Safegua...
 
Independent Consultants’ Biggest Challenges in ERP Projects – and How Apagen ...
Multiverse AI Review 2025_ The Ultimate All-in-One AI Platform.pdf
StacksandQueuesCLASS 12 COMPUTER SCIENCE.pptx
OpenEXR Virtual Town Hall - August 2025

PRESENTATION ON PYTHON.pptx

  • 1. PRESENTATION ON PYTHON NAME – AMIT SINGH UNIVERSITY ROLL NO - 14501221093
  • 3. CONTENT-  INTRODUCTION  ORIGIN  FEATURES  INDENTATION  VARIABLES  OPERATORS  DATATYPES  DECISION MAKING  CONTROL FLOW  FUNCTIONS  OOPS  CONCLUSION
  • 4. INTRODUCTION  Python is an open source , general purpose programming language that is easy to read .  It is an interpreted language , which do not need to be compiled to run .  Python is high level language that will make a programmer focus on what to do instead of how to do .  Python has been designed to emphasize on code readability with its significant use of whitespace .  Writing programs in python is less time consuming compared to any other languages .
  • 5. ORIGIN SIR GUIDO VAN ROSSUM Python is an interpreted high-level programming language for general- purpose programming .Created by “GUIDO VAN ROSSUM “ and first released in 1991. Python has a design philosophy that emphasizes code readability. Notable using significant white space .it provides construct the enable clear programming on both small an large scales .
  • 6. FEATURES  Easy to code  Free and open source  Object and oriented language  Gui programming support  High-level language  Extensible feature  Python is portable language  Python is integrated language
  • 7. INDENTATION Indentation is a very important concept of python because without proper indenting the python code , you will end up seeing INDENTATION ERROR and the code will not get compiled . Python indentation is a way of telling a python interpreter that the group of statements belongs to a particular block of code . A block is a combination of all these statements . Block can be regarded as the grouping of statements for a specific purpose .
  • 8. VARIABLES Variables are nothing but reserved memory locations to store values . This means that when you create a variable you reserve some space in memory . Example :- X=5 Y=“john” print(x) print(y)
  • 9. OPERATORS Operators are used to perform operations on variables and operators are the main building block of any programming language . Operators allow the programmer to perform different kinds of operations on operand values . Example :- print (10+5)  Python divides the operators in the following groups:-  Arithmetic operators  Assignment operators  Comparison operators  Logical operators  Identity operators  Membership operators  Bitwise operators
  • 10. DATATYPES Data types are the classification or categorized of data items . Pythons supports the following built-in data types Following are the standard or built –in data types of python :-  Numeric  Sequence type  Boolean  Set  Dictionary
  • 11. DECISION MAKING Decision in a program are used when the program has conditional choices to execute a code block . Let’s take an example of traffic lights , where different colors of lights lit up in different situations based on the conditions based on the conditions of the road or any specific rule .  IF STATEMENT  IF - ELSE STATEMENT  NESTED IF STATEMENTS  IF – ELIF LADDER
  • 12. CONTROL FLOW Loops in programming come into use when we need to repeatedly Execute a block of statements . For example : Suppose we want to print “HELLO WORLD” 10 times . This can be done with the help of loops . The loops in python are :-  While and while-else loop  For and for-else loop
  • 13. FUNCTIONS  Functions are generally the block of codes or statements in a program that gives the User the ability to reuse the same code which ultimately saves the excessive use of memory ,acts as a time saver and more importantly . Provides better readability of the Code .  So basically , a function is a collection of statements that perform some specific task and return the result to the caller .  A function can also perform some specific task without returning anything .
  • 14. OOPS  Object – oriented programming (OOP) is a method of structuring a program by bundling related properties and behaviors into individual object . Class  A class is a blueprint for the object . We can think of class as a sketch of a parrot witg labels . It contains all the details about the name , colors , size etc. Object  An object (instance) is an instantiation of a class . When class is defined , only the description for the object is defined . Therefore , no memory or storage is allocated .
  • 15. CONCLUSION At last we want to say that , python is a fully-fledged programming language. Any code you can download the python package index, or anywhere else , can be malicious and would almost certainly go unnoticed by most people’s firewalls .