write a python program to use a If-else Statement.
i =int(input("Enter a Number:"))
if(i<20):
print("i is Smaller than 20")
else:
print("i is Greater than 25")
print("Out of if else statement")
for execution and output so check the video.
write a python program to use a If-else Statement.
i =int(input("Enter a Number:"))
if(i<20):
print("i is Smaller than 20")
else:
print("i is Greater than 25")
print("Out of if else statement")
for execution and output so check the video.
Comments
Post a Comment