Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
12 views

Python Training Presentation

Uploaded by

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

Python Training Presentation

Uploaded by

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

Python Training - Industrial

Training Report
Submitted to HSBTE Panchkula
Presented by: Meena (Enrollment
No.: 220010800049)
Guided by: Mrs. Swati Nautiyal
Introduction to Python

• • Python is a versatile, high-level


programming language.
• • Created by Guido van Rossum, first released
in 1991.
• • Key Features: Readable syntax, interpreted,
cross-platform, extensive standard library.
Python as a Scripting Language

• • A language that automates tasks within


software applications.
• • Usually interpreted, high-level, and often
used for automating workflows.
Object-Oriented Programming
(OOP)

• • OOP is based on 'objects' that contain data


and methods.
• • Key Concepts: Class, Object, Inheritance,
Polymorphism, Encapsulation.
Python Features

• • Simple, readable code.


• • Cross-platform compatibility.
• • Extensive standard library.
• • Interpreted, high-level language.
Python Data Types and Variables

• • Numeric: Int, Float, Complex.


• • Sequence: String, List, Tuple.
• • Mapping: Dictionary.
• • Set Types: Set, Frozenset.
• • Variables: Containers for storing data.
Dynamically typed.
Python Operators

• • Arithmetic: +, -, *, /, %.
• • Comparison: ==, !=, <, >.
• • Logical: and, or, not.
• • Assignment: =, +=, -=.
Conditional Statements

• • if, else, elif: Control flow for decision making.


• Example:
• if x > 10:
print("x is greater than 10")
Loops in Python

• • For Loop: Iterates over sequences.


• for i in range(5):
print(i)
• • While Loop: Executes as long as a condition
is true.
Functions in Python

• • Functions are blocks of code executed when


called.
• def function_name(parameters):
# function body
Object-Oriented Programming in
Python

• • Classes and Objects: Define a class using the


'class' keyword and create an object of the
class.
• class Car:
def __init__(self, model):
self.model = model
Training Project

• • Project Title: Bill Management System using


Tkinter.
• • Tools Used: Python, Tkinter for GUI, SQLite
for database.
• • Features: Add and manage billing
information, user interface for easier
interaction.

You might also like