Get your own Python server Result Size: 625 x 565
x
 
try:
  x = float("hello")
except ValueError:
  print("The value has wrong format")
except:
  print("Something else went wrong")
The value has wrong format