Posts

Showing posts with the label check the given number n is between 25 and 75.

check the given number n is between 25 and 75.

  check the given number n is between 25 and 75.      n=int(input())      if(n>25 and n<75):          print(True)      else:          print(False)