Python
Python
**Expression
+ add
- subtract
* multiply
/ division(with floating point)
// division(rounded off)
% remainder
**slicing a string
Ex:
012345678901
Cat= "Persian Cat"
print(cat[5])
#output: A
**Replacement field
{0}.format(age)
**for loop
for i in range(0,20):
print(i)
**Conditional Operators
< less than
<= less than equal to
> greater than
=> less than equal to
== equal to
!= Not equal to