0% found this document useful (0 votes)
30 views8 pages

Python Beginner's Intro

The document introduces Python for beginners covering built-in data types including strings, integers, floats and lists, different types of operators such as arithmetic, assignment, comparison, logical and identity operators, and provides an example of finding the maximum of 2 and 3 numbers using logic.

Uploaded by

Sudarshan Tlk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views8 pages

Python Beginner's Intro

The document introduces Python for beginners covering built-in data types including strings, integers, floats and lists, different types of operators such as arithmetic, assignment, comparison, logical and identity operators, and provides an example of finding the maximum of 2 and 3 numbers using logic.

Uploaded by

Sudarshan Tlk
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 8

PYTHON BEGINNER’S

INTRO
Sudarshan S
BUILT-IN
DATA TYPES
Variables can store data of
different types, and different types
can do different things.

• name = ‘Guido van Rossum’


• age = 60
• price = 35.26
• grocery_list = [ ‘eggs’, ‘onions’ ]
TYPES OF OPERATORS

Arithmetic Assignment Comparison Logical


operators operators operators operators

Identity Membershi Bitwise


operators p operators operators
ARITHMET
IC
OPERATOR
S
COMPARIS
ON
OPERATOR
S
LOGICAL
OPERATOR
S
ASSIGNME
NT
OPERATOR
S
MAX OF 2 AND 3
NUMBERS LOGIC

You might also like