python简介


python2跟python3的区别

  1. python2源码不统一,重复代码(待补充);python3源码统一,没有重复的代码(待补充)

  2. python2跟python3的主要区别:https://blog.csdn.net/weixin_42105977/article/details/80839700

编译器跟解释器的区别:

  1. 编译器:优点:运行速度快;缺点:开发效率慢 解释器:优点:开发效率快; 缺点:运行速度慢

原文地址:https://www.cnblogs.com/zhangdadayou/p/11116421.html