Nuacht

#program to print is it positive ,negative,zero num=int(input()) if num>0: print("positive") elif num<0: print("negative") else: print("zero") #program to print if a ...
today we have if ,else and elif if Statement The if statement allows you to execute code only if a specific condition is true. else Statement The else statement runs ...