ValueError: invalid literal for int() with base 10:

try:
    value = int("invalid")
except ValueError:
    print("ValueError: invalid literal for int() with base 10")

Watch a course Python - The Practical Guide

In this code snippet, the variable "value" is being set to the integer representation of the string "invalid." However, "invalid" is not a valid integer, so the int() function will raise a ValueError. The except block catches this error and prints the error message "ValueError: invalid literal for int() with base 10."