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

Python

Uploaded by

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

Python

Uploaded by

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

Python

Great learning
Agenda
 What is python,install and Different python IDEs
 Variables and data types
 Different data structures Tuple,List,Dictionary and Set
 Flow control statements
 Object oriented programming
Installing Python & IDE
1) This is site to install Python -
>https://www.python.org/downloads/
=python latest version for windows is 3.11.5
2) This is site to install PyCharm -
>https://www.jetbrains.com/pycharm/

Variables in Python
Variables :-Data/value can be stored in temporary
storage spaces called variables.
Data Type in Python:-
Every variable is associated with data-type
Int:-10,500 Float:-3.14,15.94 Boolean:-TRUE,FALSE
STRING :- “DHRUV” Complex number:-3+4j
Cheak For data types:- type(Variable)
Comment in python single line comment:-#
Operator in python:-
Arithmetic Operator :- +,-,*,/
Relational Operator :- <,>,==,=!
Logical Operator :- &&,||

You might also like