lion = True
if lion :
print("lion roars")
else:
print("the lion is too far")

a=100
b=765
if b>a :
print("b is greater than a")
elif a==b:
print("b is qual to a")
else:
print("a is greater than b")
arrayinpython = ["lion","tiger","bear"]
x =len(arrayinpython)
for x in arrayinpython:
print(x)
Continue Reading → n= int(input("the first number = "))
m= int(input("the second number = "))
p=n/m
print("the result = " , p)