You are viewing a single comment's thread. Return to all comments →
import math import os import random import re import sys S = input().strip() try: parsed_int = int(S) print(parsed_int) 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 →