Computer Science, asked by saisarangudisa, 1 day ago

Write a program to check whether the given number is 3 digit or not in python.
please...​

Answers

Answered by leirifhxhhdus
1

Answer:

num1=int(input("Enter your number:"))

if(num1 < 1000 and num1 > 99):

   print("{} is a 3 digit number ".format(num1))

else:

   print("{} is not a 3 digit number".format(num1))

Explanation:

plz mark me as brainlist

Similar questions