Day 16: Exceptions - String to Integer

  • + 0 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")