Python file
Python file
else:
print("the largest number is", c)
larger and smaller number testing practical 2
if a>=b:
print("first is greater number")
print("second is smaller number")
else:
print("second number is greater")
print("first number is smaller")
pattern generate 2
ch=65
n=int(input("Number of rows"))
for i in range(0,n):
ch = 65
for j in range(0,i+1):
print(chr(ch),end="")
ch=ch+1
print(" ")
distance from meter to cm
if age<18:
print("you are a minor")
else:
print("you are eligible to vote")