python 为什么用return会报错啊?
小天
小天 2017-03-20 09:37:02
0
2
1312
try:
    r = requests.get('http://www.baidu.com',timeout=30)
    r.raise_for_status()
    r.encoding = r.apparent_encoding
    return r.text
except:
    return '我怎么知道又错了' 
  SyntaxError: 'return' outside function


小天
小天

勇敢站起来快步向前冲是你唯一的出路

reply all(2)
数据分析师

python Why does it report an error when using return? -PHP Chinese website Q&A-python Why do I get an error when using return? -PHP Chinese website Q&A

Let’s take a look and learn.

迷茫
import requeststry:
    r = requests.get('http://www.baidu.com',timeout=30)
    r.raise_for_status()
    r.encoding = r.apparent_encodingexcept:
    print('我怎么知道又错了')
    
print(r.text)return是在函数中返回


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!