Python静态输入提示-这正确吗?

时间:2019-12-19 08:10:34

标签: python python-3.x types

在Python 3.7上运行的这段代码中,为什么当我将整数分配给指定为float的变量时,静态类型系统没有发出错误消息?至少有转换警告?

>>> a : float = 1.0
>>> type(a)
<class 'float'>
>>> a = 2
>>> a
2
>>> type(a)
<class 'int'>
>>>

0 个答案:

没有答案