码迷,mamicode.com
首页 > 编程语言 > 详细

python2 和 python3 区别

时间:2018-05-21 19:49:11      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:python   ati   stat   span   bsp   color   cme   python2   python 2   

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 区别

标签:python   ati   stat   span   bsp   color   cme   python2   python 2   

原文地址:https://www.cnblogs.com/zhaoyingjie/p/9068632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!