Float-Error

Sat 17 May 2025
try:
    "soemthing".toFloat
except (ValueError, KeyError, AttributeError) as e:
    print('error : ', str(e))
    print(getattr(e, 'message', repr(e)))
error :  'str' object has no attribute 'toFloat'
AttributeError("'str' object has no attribute 'toFloat'")


Score: 0

Category: game20241121