PIN number challenge | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

PIN number challenge

Write a program for making PIN numbers. When a user inputs digits(numbers e.g. 5555) it's accepted and "PIN is created" is displayed but if the input is not made up of values only ( e.g. 56gg7) the message "PIN not created" is displayed. I'm using exceptions and this what my code pin = input() try: print ( "PIN number created") except: print ( "PIN not created") Some answers are correct while others are wrong and they show " PIN number created "

15th Jul 2021, 10:51 PM
Philippe Ezekiel
Philippe Ezekiel - avatar
3 Answers
+ 1
Your code will always display "PIN number created", was it really difficult for you to check it yourself in Python before asking this question?
15th Jul 2021, 11:58 PM
Solo
Solo - avatar
0
"""You aren't catching any error or throwing any in try block , maybe revise that topic again ! Basically question asks that pin should contain numbers only . For that you can google and try various methods . The one i found is isdigit() method which returns true if the value is integer . """ a=input() print(a.isdigit()) Also going with what you have written, just add the following line in try block above "print("pin.... ". pin=int(pin) And it should work fine as well!
15th Jul 2021, 11:54 PM
Abhay
Abhay - avatar
0
Put pin = int(input()) inside try block .
16th Jul 2021, 12:39 AM
TOLUENE
TOLUENE - avatar