1.

Write a program which reads a number from the keyboard and check whether it is less than 1000.

Answer» a=int(input("enter a number"))if a<1000: print("the given number is less than 1000")else : print("the given number is equal to or greater than 1000")


Discussion

No Comment Found