标签: 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'> >>>