到目前为止,我们知道我们可以使用
预编译python脚本python -m py_compile script.py
但我的问题是这样做有什么好处?
我知道在python代码中indentation error
和synatx error
的情况下它不会编译。
这部分是它将检查的所有其他错误
它会检查任何type error
??
Example could be addition of a `int` and `string` x= 10+hello
或任何错误的函数调用
range(2,4,6,7) - wrong call as it contains 4 parameters
请澄清一个更好的解释。