PHP前端开发

python是弱类型语言吗

百变鹏仔 1个月前 (01-23) #Python
文章标签 类型

python是弱类型语言吗?不是的,python属于强类型的动态脚本语言

强类型:不予许不同类型相加

动态:不使用显示数据声明类型,且确定一个变量的类型是第一次给他赋值的时候

脚本语言:一般也是解释性语言,运行代码只需要一个解释器,不需要编译

立即学习“Python免费学习笔记(深入)”;

这里对强类型和弱类型进行对比:

python代码:

&gt;&gt;&gt; 3+69&gt;&gt;&gt; "3"+6Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: Can't convert 'int' object to str implicitly&gt;&gt;&gt; "3"+"6"'36'&gt;&gt;&gt; "6"-"3"Traceback (most recent call last):  File "<stdin>", line 1, in <module>TypeError: unsupported operand type(s) for -: 'str' and 'str'</module></stdin></module></stdin>

javascript代码:

3+69"3"+6"36""3"+"6""36""6"-"3"3