You are viewing a single comment's thread. Return to all comments →
Python 3
Just clear everythig else previously given i.e. all the import statements and if name==..
s = input() try: print(int(s)) except ValueError: print("Bad String")
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 →
Python 3