python2 和 python3 區別
阿新 • • 發佈:2018-05-21
col clas () requests restfu .get python .json style
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() ifreturn_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 elser.text
python2 和 python3 區別