The code below is supposed to handle a bad port string grace…
The code below is supposed to handle a bad port string gracefully. Why does it still crash when the user types abc? try: port = int(input(“port? “)) except ZeroDivisionError: print(“not a number”)
Read Details