Day 16: Exceptions - String to Integer

  • + 0 comments

    S = input().strip() try: print(int(S)) except ValueError: print("Bad String")

    isn't this a correct code... it is not working in any python versions... pls someone help na...