Processor and memory
Complexity and capacity
Time and space
Data and space
\a
\t
\n
\b
Platform-independent
Low Level Language
Python is open-source and free to use
Object Oriented Programming
Integer
Complex Number
None
String
variable
literal
identifier
comment
Graphical
Cross-plateform
Plateform Dependent
All of these
What will be the output?
x = 10 y = x x = 20 print(y)
10
20
Error
+
*
**
//
Variables must be declared before use
Data type is checked at compile time
Variable type is determined at runtime
Python has no data types
What is the output?
x = 5 print(bool(x))
False
True
5
addr()
mem()
id()
hash()
Braces {}
Parentheses ()
Indentation
Semicolon ;
int
float
char
bool
Python is proprietary software.
Python is open-source software.
Python is hardware dependent.
Python cannot run on Linux.
Compiled only
Interpreted
Assembly
Machine
print(2 ** 3 ** 2)
64
512
256
36