YHZ012 Python 隐式类型转换

资源编号:YHZ012
配套视频:https://www.bilibili.com/video/BV1zy4y1Z7nk?p=13

隐式类型转换
在隐式类型转换中,Python 会自动将一种数据类型转换为另一种数据类型,不需要我们去干预。
以下实例中,我们对两种不同类型的数据进行运算,较低数据类型(整数)就会转换为较高数据类型(浮点数)以避免数据丢失。

num_int = 520  # int
num_float = 13.14  # float
num_new = num_int + num_float

print("num_new = ", num_new)  # num_new =  533.14
print("num_new 类型为", type(num_new))  # float

你可能感兴趣的:(python,开发语言,悟空非空也)