FPP_UNIT1
FPP_UNIT1
Programming
- By Binodini Kar
Unit 1 : Introduction
• What is Python ?
• History of Python
• Features of Python
• Why Python?
• Companies that uses python
What is Python?
• Python is an interpreted, object oriented, high-level programming
language with dynamic semantics.
-- python syntax are easy compared to other languages.
(compiler and interpreter are translators, they are used to translate the
code written in one language to the code written in another.)
• High-level Programming language – This means that we humans can
understand this language without any problem.
Eg : - length = 20
breadth = 40
area = length * breadth
print(area)
Eg : - 111010
011111
(low level programming)
Easy syntax
Dynamic semantics
History of Python
Multi-line comment
“ “ “This is a multiline comment
It spans multiple lines.” ” ”
Unit 2 : Standard Data types