python2 和 python3 区别
Posted 一天一点到
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python2 和 python3 区别相关的知识,希望对你有一定的参考价值。
python2
python 2 必须加object加入后是新式类 python 2 不加object是经典类 class HTTP(object): # 经典类和新式类 @staticmethod def get(url,return_json = True): r = requests.get(url) #restful #json if r.status_code != 200: return {} if return_json else ‘‘ return r.json() if return_json else r.text Python3 无需增加object就是新式类 class HTTP(): # 经典类和新式类 @staticmethod def get(url,return_json = True): r = requests.get(url) #restful #json if r.status_code != 200: return {} if return_json else ‘‘ return r.json() if return_json else r.text
以上是关于python2 和 python3 区别的主要内容,如果未能解决你的问题,请参考以下文章