Occurs when converting a non-numeric string to float.
value = "abc"
number = float(value)
print(number)ValueError: could not convert string to float: 'abc'
value = "3.14"
number = float(value)
print(number)Tried converting a string that wasn't a number.