Why does
x = int(34.43) y = int(\'72\') z = float(\'22.43\')
give x = 34, y= 72 and z = 22.43
but
x = int(\'10.8\')