python2和python3区别
参考链接地址:https://blog.csdn.net/samxx8/article/details/21535901 (感谢博主 可克 整理)
我目前用到的点:
改动 | 描述 | 是否用到 |
long()函数被抛弃 | 全部使用int(x)来做类型转换,long()函数不可用 | 用到 |
从python2的语句变成了函数,调用时必须使用print() | 用到 | |
has_key()被抛弃 | python2中has_key()不再被支持,使用新语法替代 (key in dict) | 用到 |