News

This simple Python program checks the status of a shop and prints an appropriate message based on its condition. The variable shop is initialized with the string "close". The if condition checks if ...
#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 ...