Skip to content
Advertisement

Don’t have idea why those errors appears

Everything in this code looks right to me, but when i put some numbers that length is different than 2 or put a word, at the end of code an error appear right below “Good bye”

How do i fix that?

Thank you in advance.

Code:

JavaScript

Advertisement

Answer

Your inputnumber function doesn’t always return two digits (sometimes it returns None). Since it already runs everything in a while True loop, when the user enters the wrong input you should use this loop to re-prompt rather than starting over by calling main() (which will return None).

In general, your program should be using while loops consistently when it needs to potentially do something more than once. There are other opportunities for simplification — for example, there’s no point in having inputnumber convert the input to an int if the caller is immediately going to convert it back to a str.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement