📜  python 示例中的隐式转换 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:36.191000             🧑  作者: Mango

代码示例1
x = 10

print("x is of type:",type(x))

y = 10.6
print("y is of type:",type(y))

x = x + y

print(x)
print("x is of type:",type(x))