Write a program to check whether the given number is 3 digit or not in python.
please...
Answers
Answered by
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