Day 16: Exceptions - String to Integer

  • + 0 comments

    Python 3 solution ** For the code to run remove the if main**

    S = input().strip()

    try: value = int(S) print(value) except ValueErr or: print("Bad String")