python-将字符串转为数字

python-将字符串转为数字
s = “1.23”
#不是(float)s
f = float(s)
print(f.class)

你可能感兴趣的:(python,字符串)