Programming Fundametals Assigment
Programming Fundametals Assigment
1. Integers
2. Floating-Point Numbers
3. Complex Numbers
4. Strings ( Escape sequence in strings, Raw strings, Triple quoted strings )
5. Boolean type
Every value in Python has a datatype. Since everything is an object in Python programming, data types
are actually classes and variables are instance (object) of these classes.
EXAMPLES:
Str : A = “Hello World”
X = ‘’’Ahmed.
He is 19 years old.
He is a good boy.
Int : X = 20
Float : x =10.5
Bool : x = true