We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
I made a code in python using try and except, however this error is appearing in the submition "Error reading result file.You should use exception handling concepts."
if name == 'main':
S = input()
try:
integer=int(S)
print(str(integer))
except ValueError:
print("Bad String")
pass
except Exception:
print("Bad String")
pass
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 16: Exceptions - String to Integer
You are viewing a single comment's thread. Return to all comments →
I made a code in python using try and except, however this error is appearing in the submition "Error reading result file.You should use exception handling concepts." if name == 'main': S = input() try: integer=int(S) print(str(integer)) except ValueError: print("Bad String") pass except Exception: print("Bad String")