Verbose error message

This commit is contained in:
Cole Deck 2021-03-15 11:36:08 -05:00
parent af72fbbbb2
commit a80ac32737

View File

@ -32,7 +32,7 @@ def baseConverter(userInput, numberBase):
try:
decimalNum = int(userInput,numberBase) # First attempt to get the number in decimal.
except:
print("bad base")
print("Number entered does not match the base!")
return
outputText = ""