Python_Code_Formulas_Graphics
Python_Code_Formulas_Graphics
result = 5 + 3
result = 10 - 7
import math
result = math.sqrt(16)
2. String Operations
3. List Operations
4. Conditional Statements
Python Code Formulas with Examples
if num % 2 == 0:
print('Even')
else:
print('Odd')
5. Loops
print(i)
count = 3
print(count)
count -= 1