tongsiying

阅读|运动|自律

0%

requests

requests

实例引入

1
2
3
4
5
6
7
import requests
response = requests.get('http://www.baidu.com/')
print(type(response))
print(response.status_code)
print(response.text)
print(type(response.text))
print(response.cookies)
<class 'requests.models.Response'>
200
<!DOCTYPE html>
<!--STATUS OK--><html> <head><meta http-equiv=content-type content=text/html;charset=utf-8><meta http-equiv=X-UA-Compatible content=IE=Edge><meta content=always name=referrer><link rel=stylesheet type=text/css href=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css><title>ç™¾åº¦ä¸€ä¸‹ï¼Œä½ å°±çŸ¥é“</title></head> <body link=#0000cc> <div id=wrapper> <div id=head> <div class=head_wrapper> <div class=s_form> <div class=s_form_wrapper> <div id=lg> <img hidefocus=true src=//www.baidu.com/img/bd_logo1.png width=270 height=129> </div> <form id=form name=f action=//www.baidu.com/s class=fm> <input type=hidden name=bdorz_come value=1> <input type=hidden name=ie value=utf-8> <input type=hidden name=f value=8> <input type=hidden name=rsv_bp value=1> <input type=hidden name=rsv_idx value=1> <input type=hidden name=tn value=baidu><span class="bg s_ipt_wr"><input id=kw name=wd class=s_ipt value maxlength=255 autocomplete=off autofocus></span><span class="bg s_btn_wr"><input type=submit id=su value=百度一下 class="bg s_btn"></span> </form> </div> </div> <div id=u1> <a href=http://news.baidu.com name=tj_trnews class=mnav>新闻</a> <a href=http://www.hao123.com name=tj_trhao123 class=mnav>hao123</a> <a href=http://map.baidu.com name=tj_trmap class=mnav>地图</a> <a href=http://v.baidu.com name=tj_trvideo class=mnav>视频</a> <a href=http://tieba.baidu.com name=tj_trtieba class=mnav>贴吧</a> <noscript> <a href=http://www.baidu.com/bdorz/login.gif?login&amp;tpl=mn&amp;u=http%3A%2F%2Fwww.baidu.com%2f%3fbdorz_come%3d1 name=tj_login class=lb>登录</a> </noscript> <script>document.write('<a href="http://www.baidu.com/bdorz/login.gif?login&tpl=mn&u='+ encodeURIComponent(window.location.href+ (window.location.search === "" ? "?" : "&")+ "bdorz_come=1")+ '" name="tj_login" class="lb">登录</a>');</script> <a href=//www.baidu.com/more/ name=tj_briicon class=bri style="display: block;">更多产品</a> </div> </div> </div> <div id=ftCon> <div id=ftConw> <p id=lh> <a href=http://home.baidu.com>关于百度</a> <a href=http://ir.baidu.com>About Baidu</a> </p> <p id=cp>&copy;2017&nbsp;Baidu&nbsp;<a href=http://www.baidu.com/duty/>使用百度前必读</a>&nbsp; <a href=http://jianyi.baidu.com/ class=cp-feedback>意见反馈</a>&nbsp;京ICP证030173号&nbsp; <img src=//www.baidu.com/img/gs.gif> </p> </div> </div> </div> </body> </html>

<class 'str'>
<RequestsCookieJar[<Cookie BDORZ=27315 for .baidu.com/>]>

各种请求方式

1
2
3
4
5
6
import requests
requests.post('http://www.httpbin.org/post')
requests.put('http://www.httpbin.org/put')
requests.delete('http://www.httpbin.org/delete')
requests.head('http://www.httpbin.org/get')
requests.options('http://www.httpbin.org/get')
<Response [200]>

请求

基本get请求

1
2
3
import requests
response = requests.get('http://www.httpbin.org/get')
print(response.text)
{"args":{},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Host":"www.httpbin.org","User-Agent":"python-requests/2.19.1"},"origin":"118.74.61.39","url":"http://www.httpbin.org/get"}

带参数get请求

1
2
3
4
5
6
7
import requests
data ={
'name':'germey',
'age':22
}
response = requests.get('http://www.httpbin.org/get',params=data)
print(response.text)
{"args":{"age":"22","name":"germey"},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Host":"www.httpbin.org","User-Agent":"python-requests/2.19.1"},"origin":"118.74.61.39","url":"http://www.httpbin.org/get?name=germey&age=22"}

解析json

1
2
3
4
5
6
import requests,json
response = requests.get('http://www.httpbin.org/get')
print(type(response.text))
print(response.text)
print(response.json())
print(json.loads(response.text))
<class 'str'>
{"args":{},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Host":"www.httpbin.org","User-Agent":"python-requests/2.19.1"},"origin":"118.74.61.39","url":"http://www.httpbin.org/get"}

{'args': {}, 'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'close', 'Host': 'www.httpbin.org', 'User-Agent': 'python-requests/2.19.1'}, 'origin': '118.74.61.39', 'url': 'http://www.httpbin.org/get'}
{'args': {}, 'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'close', 'Host': 'www.httpbin.org', 'User-Agent': 'python-requests/2.19.1'}, 'origin': '118.74.61.39', 'url': 'http://www.httpbin.org/get'}

获取二进制数据

1
2
3
4
5
import requests
response = requests.get('https://github.com/favicon.ico')
print(type(response.text),type(response.content))
print(response.content)
print(response.text)
<class 'str'> <class 'bytes'>
b'\x00\x00\x01\x00\x02\x00\x10\x10\x00\x00\x01\x00 \x00(\x05\x00\x00&\x00\x00\x00  \x00\x00\x01\x00 \x00(\x14\x00\x00N\x05\x00\x00(\x00\x00\x00\x10\x00\x00\x00 \x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x11\x13v\x13\x13\x13\xc5\x0e\x0e\x0e\x12\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x0f\x0f\x11\x11\x11\x14\xb1\x13\x13\x13i\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x14\x14\x96\x13\x13\x14\xfc\x13\x13\x14\xed\x00\x00\x00\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x15\x15\x17\xff\x15\x15\x17\xff\x11\x11\x13\x85\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x11\x12\xc1\x13\x13\x14\xee\x11\x11\x11\x1e\x10\x10\x10\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\r\x13\x13\x14\xf5\x15\x15\x17\xff\x15\x15\x17\xff\x11\x11\x14\xaf\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x14\x14\x99\x15\x15\x17\xff\x06\x06\x11,\x0e\x0e\x0e\\\x0f\x0f\x0f\xc1\x0f\x0f\x0f"\x00\x00\x00\x00\x00\x00\x00\x00\x0f\x0f\x0f4\x10\x10\x10\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x14\x14\x14\x8f\x00\x00\x00\x00\x10\x10\x100\x0f\r\x0f\xff\x00\x00\x00\xf9\x01\x01\x01\xed\x02\x02\x02\xff\x02\x02\x02\xf6\x0e\x0e\x0e8\x00\x00\x00\x00\x00\x00\x00\x00\x08\x08\x08@\x02\x02\x02\xeb\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x11\x11\x11-\x14\x14\x15\x9c\x14\x14\x15\xff\x01\x01\x01\xfc\x0f\x0f\x11\xfb\r\r\x11;\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\r\r\x12:\x13\x13\x14\xe7\x15\x15\x17\xff\x15\x15\x17\xff\x12\x12\x12\x9a\x13\x13\x13\xd9\x15\x15\x17\xff\x15\x15\x17\xff\x13\x13\x13O\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x11\x11L\x15\x15\x17\xff\x15\x15\x17\xff\x13\x13\x13\xda\x13\x13\x14\xf6\x15\x15\x17\xff\x14\x14\x14\xf0\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x13\x13\x14\xf1\x15\x15\x17\xff\x13\x13\x14\xf6\x13\x13\x14\xf7\x15\x15\x17\xff\x14\x14\x14\xe1\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x14\x14\xe1\x15\x15\x17\xff\x13\x13\x14\xf7\x14\x14\x14\xde\x15\x15\x17\xff\x13\x13\x14\xf9\x0f\x0f\x0f!\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x10\x10\x1f\x13\x13\x14\xf8\x15\x15\x17\xff\x14\x14\x14\xde\x11\x11\x14\xa2\x15\x15\x17\xff\x15\x15\x17\xff\x0f\x0f\x0f4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x10\x10@\x15\x15\x17\xff\x15\x15\x17\xff\x11\x11\x14\xa2\x0e\x0e\x0e8\x15\x15\x17\xff\x15\x15\x17\xff\x12\x12\x12\x98\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x01\x00\x00\x00\x00\x12\x12\x12\x98\x15\x15\x17\xff\x15\x15\x17\xff\x0e\x0e\x0e8\x00\x00\x00\x00\x11\x11\x14\xa4\x15\x15\x17\xff\x11\x11\x12\xc1\x0e\x0e\x0e6\x00\x00\x00\x81\r\r\r\xdc\x12\x12\x14\xd8\x12\x12\x14\xd8\x13\x13\x14\xf7\x00\x00\x00t\x05\x05\x057\x11\x11\x12\xc1\x15\x15\x17\xff\x11\x11\x14\xa4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x13\x13\x13\xc6\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x13\x13\x13\xc6\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x11\x11\x14\xa2\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x11\x11\x14\xa2\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x10\x10>\x13\x13\x13\x97\x13\x13\x13\xd9\x12\x12\x14\xf2\x12\x12\x14\xf2\x13\x13\x13\xd9\x13\x13\x13\x97\x10\x10\x10>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(\x00\x00\x00 \x00\x00\x00@\x00\x00\x00\x01\x00 \x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15+\x0c\x1e\x1e\x1e\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x1b\x1b\x1c$$$\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x1d#\x17\x17\x18\x92\x15\x15\x17\xf1\x16\x16\x17\xf3@@@\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\xed\x16\x16\x17\xf3\x16\x16\x18\x95\x1c\x1c\x1c%\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$$$\x07\x16\x16\x18\x80\x16\x16\x18\xf8\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff   \x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x17\xfe\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf9\x16\x16\x18\x82   \x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x1b\x1b\x1c\x16\x16\x17\xd0\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff+++\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x17\xfd\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x17\xd2\x1a\x1a\x1a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x1b/\x15\x15\x17\xe6\x15\x15\x17\xff\x15\x15\x17\xfc\x16\x16\x18\xb8\x16\x16\x18t\x16\x16\x19g\x16\x16\x18~UUU\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x17\xfc\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xe6\x16\x16\x1b/\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x1a\x1a\x1d\x15\x15\x17\xe6\x15\x15\x17\xff\x15\x15\x17\xfc\x18\x18\x18I\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x17\xfb\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xe6\x1a\x1a\x1a\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$$$\x07\x16\x16\x17\xd1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\x9d\x00\x00\x00\x00\x15\x15 \x18\x16\x16\x18s\x15\x15\x17\x90\x17\x17\x19f$$$\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1c\x1c\x12\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x17\xd1$$$\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\x81\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xf1\x1b\x1b\x1b\x1c\x1c\x1c\x1c%\x16\x16\x18\xeb\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x17\x17\x1aN\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x18\x18@\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x1c$\x16\x16\x18\xf9\x15\x15\x17\xff\x15\x15\x18\xee\x16\x16\x1aE\x15\x15+\x0c\x16\x16\x17\xcf\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x17\xc4\x80\x80\x80\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x18\xbf\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf8\x16\x16\x1d#\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\x94\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x17\x8e\x17\x17\x1aZ\x16\x16\x17\xd1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xe2\x16\x16\x18\x80\x16\x16\x1aE\x1c\x1c\x1c\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"""\x0f\x17\x17\x17B\x17\x17\x19{\x16\x16\x17\xdb\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x17\x17\x18\x93\x00\x00\x00\x00\'\'\'\r\x15\x15\x17\xf2\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xfe\x16\x16\x18\x82333\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x80\x80\x02\x16\x16\x18t\x15\x15\x17\xfc\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xf2\x15\x15+\x0c\x16\x16\x19R\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x18`\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x19R\x15\x15\x19\x91\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xca\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\xb7\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x19\x91\x16\x16\x18\xc9\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x19\\\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x19G\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xc8\x16\x16\x18\xe1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x17\x17\x17\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00   \x08\x16\x16\x18\xf8\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xe0\x16\x16\x18\xf5\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xf2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\xde\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf5\x16\x16\x17\xf3\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xde\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x18\xca\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x17\xf3\x15\x15\x18\xd9\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf4\xff\xff\xff\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\xe1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xd9\x15\x15\x18\xbf\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x1c\x1c\x1c%\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00   \x10\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xbf\x16\x16\x18\x95\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18v\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15\x18a\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\x95\x16\x16\x19G\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf4\x19\x19\x19\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1b\x1b\x1b\x13\x16\x16\x18\xeb\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x19G+++\x06\x15\x15\x17\xf1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x19]\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x18\x18I\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xf1+++\x06\x00\x00\x00\x00\x16\x16\x18\x97\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x19\x19\x193\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x1a\x1a\x1e\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\x97\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15 \x18\x16\x16\x18\xf4\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x18\x18\x185\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15+\x0c\x18\x18\x18*\x80\x80\x80\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x01\x1b\x1b\x1b&\x1e\x1e\x1e\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x17\x17\x17!\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf4\x15\x15 \x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x18\x82\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x17\x17\x19f\x00\x00\x00\x00@@@\x04\x17\x17\x17b\x16\x16\x17\xe7\x15\x15\x17\xff\x16\x16\x17\xf3\x16\x16\x17\xd2\x15\x15\x18\xc1\x15\x15\x18\xc0\x16\x16\x17\xd1\x15\x15\x17\xf0\x15\x15\x17\xff\x16\x16\x18\xed\x15\x15\x18l+++\x06\x00\x00\x00\x00\x16\x16\x19R\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\x82\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$$$\x07\x16\x16\x18\xc8\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xd6\x15\x15\x18\xa8\x16\x16\x18\xec\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xef\x15\x15\x18\xaa\x15\x15\x18\xcd\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xc8$$$\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15 \x18\x15\x15\x18\xe3\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xe3\x15\x15 \x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x16\x1c.\x15\x15\x18\xe3\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x18\xe3\x16\x16\x1c.\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15 \x18\x16\x16\x18\xc8\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xc8\x15\x15 \x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00$$$\x07\x16\x16\x18\x82\x16\x16\x18\xf4\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x16\x16\x18\xf4\x16\x16\x18\x82$$$\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x15\x15 \x18\x16\x16\x18\x97\x15\x15\x17\xf1\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xff\x15\x15\x17\xf1\x16\x16\x18\x97\x15\x15 \x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00+++\x06\x16\x16\x19G\x16\x16\x18\x95\x15\x15\x18\xbf\x15\x15\x18\xd9\x16\x16\x17\xf3\x16\x16\x17\xf3\x15\x15\x18\xd9\x15\x15\x18\xbf\x16\x16\x18\x95\x16\x16\x19G+++\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
:�������OL������������������!������4@���8���
��������333���t�������+R������t`������R�����������������������\G������������   ���������������������������������������������������%   ������������va������G������������G+++������]I������+++������3������ �����5+*������&!����� �����f@@@b����������l+++R�����$$$��������������������������$$$ ������������������������ .����������������������. �������������������� $$$������������������$$$ �������������� +++G��������G+++
1
2
3
4
5
import requests
response = requests.get('https://github.com/favicon.ico')
with open('.\images\logo.gif','wb') as f:
f.write(response.content)
f.close()

添加headers

1
2
3
import requests
response = requests.get('https://www.zhihu.com/explore')
print(response.text)
<html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>openresty</center>
</body>
</html>
1
2
3
4
5
6
import requests
headers = {
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0"
}
response = requests.get('https://www.zhihu.com/explore',headers=headers)
print(response.text)
<!DOCTYPE html>
<html lang="zh-CN" dropEffect="none" class="no-js no-auth ">
<head>
<meta charset="utf-8" />

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit" />
<meta http-equiv="X-ZA-Response-Id" content="d82f46530f07c0dd9c379b1507bf7c0d">

<meta http-equiv="X-ZA-Experiment" content="default:None,ge3:ge3_9,ge2:ge2_1,nwebQAGrowth:experiment,is_office:false,nweb_growth_people:default,is_show_unicom_free_entry:unicom_free_entry_off,app_store_rate_dialog:close,android_profile_panel:panel_b,search_advert_position:1,live_store:ls_a2_b2_c1_f2,nweb_search:nweb_search_heifetz,search_hybrid_tabs:pin-3#album-7,new_live_feed_mediacard:new,hybrid_zhmore_video:yes,new_mobile_column_appheader:new_header,search_tab:collapse,rt:y,ad_r:a,growth_search:s2,qaweb_related_readings_content_control:close,android_pass_through_push:all,new_sign_bg:new,new_mobile_app_header:true,android_search_tab_style:search_tab_style_b,u_re:1,android_db_recommend_action:open,zcm-lighting:zcm,android_db_feed_hash_tag_style:button,mobile_feed_guide:block,qrcode_login:qrcode,is_new_noti_panel:no,wechat_share_modal:auto_down_load,nweb_search_suggest:default,growth_banner:default">
<title>发现 - 知乎</title>

<meta name="apple-itunes-app" content="app-id=432274380, app-argument=zhihu://explore">


<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="mobile-agent" content="format=html5;url=https://www.zhihu.com/explore">
<meta id="znonce" name="znonce" content="ed8650ce5d0a44829e7a5135a90d7cb2">



<link rel="apple-touch-icon" href="https://static.zhihu.com/static/revved/img/ios/touch-icon-152.87c020b9.png" sizes="152x152">
<link rel="apple-touch-icon" href="https://static.zhihu.com/static/revved/img/ios/touch-icon-120.496c913b.png" sizes="120x120">
<link rel="apple-touch-icon" href="https://static.zhihu.com/static/revved/img/ios/touch-icon-76.dcf79352.png" sizes="76x76">
<link rel="apple-touch-icon" href="https://static.zhihu.com/static/revved/img/ios/touch-icon-60.9911cffb.png" sizes="60x60">


<link rel="shortcut icon" href="https://static.zhihu.com/static/favicon.ico" type="image/x-icon">

<link rel="search" type="application/opensearchdescription+xml" href="https://static.zhihu.com/static/search.xml" title="知乎" />
<link rel="stylesheet" href="https://static.zhihu.com/static/revved/-/css/z.3e5da9dd.css">



<meta name="google-site-verification" content="FTeR0c8arOPKh8c5DYh_9uu98_zJbaWw53J-Sch9MTg" />



<!--[if lt IE 9]>
<script src="https://static.zhihu.com/static/components/respond/dest/respond.min.js"></script>
<link href="https://static.zhihu.com/static/components/respond/cross-domain/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="/static/components/respond/cross-domain/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />
<script src="/static/components/respond/cross-domain/respond.proxy.js"></script>
<![endif]-->
<script src="https://static.zhihu.com/static/revved/-/js/instant.35b468b8.js"></script>

</head>

<body class="zhi page-explore">




<div role="navigation" class="zu-top" data-za-module="TopNavBar">
<div class="zg-wrap modal-shifting clearfix" id="zh-top-inner">
<a href="/" class="zu-top-link-logo" id="zh-top-link-logo" data-za-c="view_home" data-za-a="visit_home" data-za-l="top_navigation_zhihu_logo">知乎</a>



<ul class="topnav-noauth clearfix">
<li>
<a href="javascript:;" class="js-signup-noauth"><i class="zg-icon zg-icon-dd-home"></i>注册知乎</a>
</li>
<li>
<a href="javascript:;" class="js-signin-noauth">登录</a>
</li>
</ul>



<button class="zu-top-add-question" id="zu-top-add-question">提问</button>


<div role="search" id="zh-top-search" class="zu-top-search">
<form method="GET" action="/search" id="zh-top-search-form" class="zu-top-search-form">



<input type="hidden" name="type" value="content">
<label for="q" class="hide-text">知乎搜索</label><input type="text" class="zu-top-search-input" id="q" name="q" autocomplete="off" value="" maxlength="100" placeholder="搜索你感兴趣的内容...">
<button type="submit" class="zu-top-search-button"><span class="hide-text">搜索</span><span class="sprite-global-icon-magnifier-dark"></span></button>
</form>
</div>



<div id="zg-top-nav" class="zu-top-nav">
<ul class="zu-top-nav-ul zg-clear">

<li class="zu-top-nav-li " id="zh-top-nav-home">
<a class="zu-top-nav-link" href="/" id="zh-top-link-home" data-za-c="view_home" data-za-a="visit_home" data-za-l="top_navigation_home">首页</a>
</li>



<li class="top-nav-topic-selector zu-top-nav-li " id="zh-top-nav-topic">
<a class="zu-top-nav-link" href="/topic" id="top-nav-dd-topic">话题</a>
</li>

<li class="zu-top-nav-li current" id="zh-top-nav-explore">
<a class="zu-top-nav-link" href="/explore">发现</a>
</li>


</ul>
<div class="zu-top-nav-live zu-noti7-popup zg-r5px no-hovercard" id="zh-top-nav-live-new" role="popup" tabindex="0">
<div class="zu-top-nav-live-inner zg-r5px">
<div class="zu-top-live-icon">&nbsp;</div>
<div class="zu-home-noti-inner" id="zh-top-nav-live-new-inner">
<div class="zm-noti7-popup-tab-container clearfix" tabindex="0">
<button class="zm-noti7-popup-tab-item message">
<span class="icon">消息</span>
</button>
<button class="zm-noti7-popup-tab-item user">
<span class="icon">用户</span>
</button>
<button class="zm-noti7-popup-tab-item thanks">
<span class="icon">赞同和感谢</span>
</button>
</div>
</div>
<div class="zm-noti7-frame-border top"></div>
<div class="zm-noti7-frame">
<div class="zm-noti7-content message">
<div class="zm-noti7-content-inner">
<div class="zm-noti7-content-body">
<div class="zm-noti7-popup-loading">
<span class="noti-spinner-loading"></span>
</div>
</div>
</div>
</div>
<div class="zm-noti7-content user" style="display:none;">
<div class="zm-noti7-content-inner">
<div class="zm-noti7-content-body">
<div class="zm-noti7-popup-loading">
<span class="noti-spinner-loading"></span>
</div>
</div>
</div>
</div>
<div class="zm-noti7-content thanks" style="display:none;">
<div class="zm-noti7-content-inner">
<div class="zm-noti7-content-body">
<div class="zm-noti7-popup-loading">
<span class="noti-spinner-loading"></span>
</div>
</div>
</div>
</div>
</div>
<div class="zm-noti7-frame-border bottom"></div>
<div class="zm-noti7-popup-footer">
<a href="/notifications" class="zm-noti7-popup-footer-all zg-right">查看全部 &raquo;</a>
<a href="/settings/notification" class="zm-noti7-popup-footer-set" title="通知设置" ><i class="zg-icon zg-icon-settings"></i></a>
</div>
</div>
</div>

</div>

</div>
</div>


<div class="zu-global-notify" id="zh-global-message" style="display:none">
<div class="zg-wrap">
<div class="zu-global-nitify-inner">
<a class="zu-global-notify-close" href="javascript:;" title="关闭" name="close">x</a>
<span class="zu-global-notify-icon"></span>
<span class="zu-global-notify-msg"></span>
</div>
</div>
</div>




<div class="zg-wrap zu-main clearfix "  role="main">
<div class="zu-main-content">
<div class="zu-main-content-inner">





<div id="zh-recommend">
<div id="zh-recommend-title" class="page-title">
<i class="zg-icon zg-icon-feedlist"></i>
<span>编辑推荐</span>
<a href="/explore/recommendations" class="zg-link-gray zg-right" data-za-c="explore" data-za-a="visit_explore_recommendations" data-za-l="editor_recommendations_more"><span>更多推荐 &raquo;</span></a>
</div>
<div id="zh-recommend-list">


<div class="top-recommend-feed feed-item">
<h2><a class="question_link" href="/question/51238482/answer/124816105" target="_blank" data-id="12712867" data-za-element-name="Title">
有什么常见的运动拉伸误区?
</a></h2>
<div class="avatar">
<a title="柔王丸"
data-hovercard="p$t$rou-wang-wan"
class="zm-item-link-avatar"
target="_blank"
href="/people/rou-wang-wan">
<img src="https://pic3.zhimg.com/v2-962f2c3718a2beb48ff86aa77d8c0166_m.jpg" class="zm-item-img-avatar">
</a>
</div>

<div class="feed-main">
<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$rou-wang-wan"
target="_blank" href="/people/rou-wang-wan"
>柔王丸</a></span><span title="轻重健身-strength slim sexy" class="bio">
轻重健身-strength slim sexy
</span>
</span>
</div>
<div class="zm-item-rich-text" data-resourceid="12712867" data-action="/answer/content">
<div class="zh-summary summary clearfix">

1: 拉伸拉得是筋: 古代人这么说对,现代人,其实现代解剖术语里没有筋这个概念,古代说的筋就是指所有有运动功能的肌肉和致密结缔组织统称,古人说的肉是指肥肉,脂肪,比如刘皇叔说的髀里肉生,不是内收肌变大了,是大腿内侧长脂肪了。 2,拉伸拉得是韧带…
</div>
</div>
</div>
</div>




<div class="recommend-feed feed-item">

<span class="zg-right zg-gray-normal feed-meta" >文章</span>

<h2><a class="post-link" target="_blank" href="https://zhuanlan.zhihu.com/p/26519111" data-za-element-name="Title">(I)Banach空间和不动点定理 3: 紧性</a></h2>
</div>



<div class="recommend-feed feed-item">
<span class="zg-right zg-gray-normal feed-meta" >问答</span>
<h2><a class="question_link" href="/question/284322589/answer/436736558" target="_blank" data-id="25459821" data-za-element-name="Title">
如何评价 2018 俄罗斯世界杯四分之一决赛英格兰 2:0 轻取瑞典,时隔 28 年再度晋级半决赛?
</a></h2>
</div>



<div class="recommend-feed feed-item">
<span class="zg-right zg-gray-normal feed-meta" >问答</span>
<h2><a class="question_link" href="/question/68476815/answer/278957501" target="_blank" data-id="19619594" data-za-element-name="Title">
上班族日常有哪些方法可以缓解肩颈后背的疲劳?
</a></h2>
</div>



<div class="recommend-feed feed-item">
<span class="zg-right zg-gray-normal feed-meta" >问答</span>
<h2><a class="question_link" href="/question/21251847/answer/198079824" target="_blank" data-id="681413" data-za-element-name="Title">
如何锻炼改善骨盆前倾?
</a></h2>
</div>


</div>
</div>
<div class="explore-tab" id="js-explore-tab">
<a class="zg-anchor-hidden" name="daily-hot"></a>
<a class="zg-anchor-hidden" name="monthly-hot"></a>
<ul class="tab-navs clearfix">
<li class="tab-nav"><a class="anchor" href="#daily-hot" data-za-c="explore" data-za-a="visit_explore_daily_trendings" data-za-l="explore_daily_trendings">今日最热</a></li>
<li class="tab-nav"><a class="anchor" href="#monthly-hot" data-za-c="explore" data-za-a="visit_explore_monthly_trendings" data-za-l="explore_monthly_trendings">本月最热</a></li>
</ul>
<div class="tab-panel">
<div data-type="daily" data-zop-feedlist>
<div class="explore-feed feed-item" data-offset="1">
<h2><a class="question_link" href="/question/283397978/answer/435343610" target="_blank" data-id="25253597" data-za-element-name="Title">
如何评价王传君在《我不是药神》中的表演?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="109222774"
data-atoken="435343610"
data-collapsed="0"
data-created="1530847994"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="0"
data-zop
>
<link itemprop="url" href="/question/283397978/answer/435343610">
<meta itemprop="answer-id" content="109222774">
<meta itemprop="answer-url-token" content="435343610">
<a class="zg-anchor-hidden" name="answer-109222774"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>11K</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">11K</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$qi-qi-kan-ba"
target="_blank" href="/people/qi-qi-kan-ba"
>琪琪看吧</a></span><span title="新热好的电影资源,公众号:琪琪看吧" class="bio">
新热好的电影资源,公众号:琪琪看吧
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="11335">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">11335</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="25253597" data-action="/answer/content" data-author-name="琪琪看吧" data-entry-url="/question/283397978/answer/435343610">

<textarea hidden class="content">&lt;p&gt;要说王传君的演技,可以先说说关谷神奇。有礼貌,自尊心强,一口蹩脚奇怪口音的中文,非常有风格圈粉的角色。关谷神奇时代,人们只关注他长得帅,很多路人误以为演员真的是日本人——直到百度出名字:中国·上海·王传君。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-a19b4dca890932ba0e1f837f6258d970_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;604&quot; data-rawheight=&quot;350&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;604&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-a19b4dca890932ba0e1f837f6258d970_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;OK,被观众误以为是日本人,这是他演技的起点。&lt;/p&gt;&lt;p&gt;从《爱情公寓》走出来的王传君,几乎脱离了原本的圈子。不参加综艺,不搞娱乐绯闻,甚至也不回《爱情公寓》剧组,动不动还要在微博上怼一下大导演啊什么的&lt;/p&gt;&lt;p&gt;⬇️&lt;/p&gt;&lt;blockquote&gt;事件:王家卫《摆渡人》上映后遭批评,明星们捧场分别发“我喜欢”三个字给王家卫。只有王传君非常耿直的发了四个字:我不喜欢。重点是,这四个字,到现在没删。&lt;/blockquote&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-54a23487c986cf55d6fbc612b04a0ae2_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;503&quot; data-rawheight=&quot;321&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;503&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-54a23487c986cf55d6fbc612b04a0ae2_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;事实上,《摆渡人》确实是王家卫影片中瑕疵明显的一个。&lt;/p&gt;&lt;p&gt;于是,粉丝都开始担心他的戏路,担心他并不“人精”的为人会在资源为王的演艺圈里走不下去,媒体们说他“蓄长发性情大变”。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-c9115daae54dad577b52e6b480f7feef_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;591&quot; data-rawheight=&quot;643&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;591&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-c9115daae54dad577b52e6b480f7feef_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;而王传君默默的,去了《罗曼蒂克消亡史》剧组。&lt;/p&gt;&lt;p&gt;虽然这个剧组影帝影后特别多,但跟他没有对手戏,甚至他的剧情都不在主线中,配角中的配角,只有3场话唠戏。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-10e6556bb832207448a92557fc741d9d_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;571&quot; data-rawheight=&quot;346&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;571&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-10e6556bb832207448a92557fc741d9d_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;而王传君做到了:你认不出关谷神奇,你看到了一个市侩、鲜活、有人味儿的黑手党小弟——两个字评价:出彩。&lt;/p&gt;&lt;p&gt;到了《我不是药神》里,王传君的演技嘛……分析的前提如下:&lt;/p&gt;&lt;blockquote&gt;首先:坏猴子影视圈子里的演员,向来实力派:黄渤、王迅、郭涛、余男、郝蕾、杨新鸣……当然还有徐峥,王传君。&lt;/blockquote&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-636619917906da57af46efd58c753e56_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;597&quot; data-rawheight=&quot;372&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;597&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-636619917906da57af46efd58c753e56_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;其次:陈佩斯说过,“每个好的喜剧,内核里都是悲剧”,而这样的喜剧,最难言。王传君演了,还演的不错。&lt;/p&gt;&lt;p&gt;再说他电影里的表现。&lt;/p&gt;&lt;p&gt;而在电影中,他出现的第一秒,你就觉得:他是你曾经在医院里遇到过的那个将死之人,尤抱着对人生的热爱,虽然气息微弱,但是你不敢同情他,也不会看低他。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-b8c657dc393c849e8ca6a44c32b5786d_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;602&quot; data-rawheight=&quot;361&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;602&quot; data-original=&quot;https://pic1.zhimg.com/50/v2-b8c657dc393c849e8ca6a44c32b5786d_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;你看不到关谷神奇,你也看不到黑手小弟,更看不到王传君自己——他就是吕受益,孩子刚出生,自己想活命。&lt;/p&gt;&lt;blockquote&gt;举例:&lt;/blockquote&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-57fa61ad6188034cea9231f48bb38a16_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;562&quot; data-rawheight=&quot;335&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;562&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-57fa61ad6188034cea9231f48bb38a16_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;1.火锅的戏:大家不欢而散之后,吕受益转头看向程勇,那句“大家都喝多了是吧?开玩笑的吧?”这句话的含义格外丰富,他是在祈求程勇继续卖药,那是他生存下去几乎是唯一的希望。他讲得柔弱,甚至是绝望,然后被程勇一声“滚”呵退。&lt;br&gt;临走时那个高大但无力的身影,步入雨中,整个体态都能传达出绝望。&lt;br&gt;(这块没有找到图,大家可以去影院自己看,插一张能表现出他演技状态的图……)&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-cca65a981a3a7875a462b87837d0822b_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;601&quot; data-rawheight=&quot;317&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;601&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-cca65a981a3a7875a462b87837d0822b_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;2.病房的戏:王传君饿自己两天,关禁闭,才演出了病床上的虚弱,那部分,听着他在治疗时的哀嚎,想必坐不住的,除了病房外的徐峥,还有荧屏前的观众。可以说明问题了。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-36bc0ad4a286ba01d30101e375f7badb_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;537&quot; data-rawheight=&quot;268&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;537&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-36bc0ad4a286ba01d30101e375f7badb_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;br&gt;怎么说?想因为火锅那场戏里王传君的表现去二刷,又因为病房的戏太虐,而不敢二刷。&lt;/p&gt;&lt;p&gt;《我不是药神》上映之后,很多人懂了为什么他回不去《爱情公寓》了:《罗曼蒂克消亡史》《我不是药神》,都会被载入影视;而《爱情公寓》只会被盘点“致敬”美剧。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-7893b6ace8b27070c28f45d9634cb617_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;517&quot; data-rawheight=&quot;341&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;517&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-7893b6ace8b27070c28f45d9634cb617_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;这是王传君的选择。他或许是从《爱情公寓》开始的,有明星的号召力。&lt;/p&gt;&lt;p&gt;可他一开始就选择去做“演员”,而不是明星。&lt;/p&gt;&lt;p&gt;所以他可以为了一场吃的戏,一直吃到吐,就为了还原人物的“津津有味”“生活气息”……&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-a3e44991bef3a82f85ca1793520d333b_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;552&quot; data-rawheight=&quot;289&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;552&quot; data-original=&quot;https://pic1.zhimg.com/50/v2-a3e44991bef3a82f85ca1793520d333b_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;这些年通过各种努力,他终于坐实自己“演员”的身份。“关谷”的时代,对于他来说,早都过去了。&lt;/p&gt;&lt;p&gt;​&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-ba4869897e6c44c5be12b583496ae6d6_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;584&quot; data-rawheight=&quot;719&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;584&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-ba4869897e6c44c5be12b583496ae6d6_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;总而言之,只要他的资源没啥问题,接着好好演,他的演技会被越来越看好的。&lt;/p&gt;&lt;p&gt;只要遇到好本子,演技可以虐杀观众,当个影帝啥的,没什么不可能。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-c95380241cd2cdec297cbfb865290481_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;530&quot; data-rawheight=&quot;358&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;530&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-c95380241cd2cdec297cbfb865290481_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;王传君会坚持他的风格,&lt;/p&gt;&lt;p&gt;而作为观众,&lt;/p&gt;&lt;p&gt;完全有理由期待他呈现出更好的角色。&lt;/p&gt;&lt;p&gt;&lt;b&gt;喜欢请点下赞吧&lt;/b&gt;&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">
<img src="https://pic1.zhimg.com/50/v2-1c254825fd92e90a337e8ff8c985e95b_200x112.jpg" data-caption="" data-size="normal" data-rawwidth="604" data-rawheight="350" data-watermark="watermark" data-original-src="v2-1c254825fd92e90a337e8ff8c985e95b" data-watermark-src="v2-a19b4dca890932ba0e1f837f6258d970" data-private-watermark-src="v2-2826c606c601d5de7125d0b8f4ff0667" data-tags="politic" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic1.zhimg.com/50/v2-1c254825fd92e90a337e8ff8c985e95b_r.jpg">
要说王传君的演技,可以先说说关谷神奇。有礼貌,自尊心强,一口蹩脚奇怪口音的中文,非常有风格圈粉的角色。关谷神奇时代,人们只关注他长得帅,很多路人误以为演员真的是日本人——直到百度出名字:中国·上海·王传君。 OK,被观众误以为是日本人,这是…

<a href="/question/283397978/answer/435343610" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-07-06" target="_blank" href="/question/283397978/answer/435343610">编辑于 2018-07-06</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-25253597"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>288 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="0">
<meta name="disableCopyAvatar" content="https://pic4.zhimg.com/v2-1ca9c406e6f8c99650fedaa31f060c91_s.jpg">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-6" target="_blank" class="meta-item copyright">禁止转载</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="2">
<h2><a class="question_link" href="/question/283883806/answer/434944222" target="_blank" data-id="25361907" data-za-element-name="Title">
如何看待美国废除Affirmative Action(权益倾斜)?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="109150232"
data-atoken="434944222"
data-collapsed="0"
data-created="1530797575"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/283883806/answer/434944222">
<meta itemprop="answer-id" content="109150232">
<meta itemprop="answer-url-token" content="434944222">
<a class="zg-anchor-hidden" name="answer-109150232"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>148</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">148</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$liu-xiang-xi-94"
target="_blank" href="/people/liu-xiang-xi-94"
>刘翔熙</a></span><span title="O编 前美军战地工兵士官 伊战老兵 联邦劳工部探员 NRA手枪教官 OH隐蔽持枪证教官 娃爹" class="bio">
O编 前美军战地工兵士官 伊战老兵 联邦劳…
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="148">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">148</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="25361907" data-action="/answer/content" data-author-name="刘翔熙" data-entry-url="/question/283883806/answer/434944222">

<textarea hidden class="content">&lt;p&gt;谢邀,不过题主的问题偏了。 &lt;/p&gt;&lt;p&gt;1。affirmative Action 不应翻译成平权,而是权益倾斜。 因为affirm 的意思有 offer (someone) emotional support or encouragement的意思。而affirmtive 也含有鼓励,肯定的意思。 因此翻译成 鼓励行为 (词义翻译)或 权益倾斜 (实际目的)会更合适。 &lt;/p&gt;&lt;p&gt;2。affirmative action 在民权运动中有特殊意义。为此我曾经撰文介绍过。 最初是为了改变美国有色人种上高等教育后仍然被白人至上主义者把持的政府和企业拒绝雇用建立的。 其初衷是,政府和接纳政府资金的企业(如波音等)必须在符合条件的所有候选人中,对有色人种进行优先雇用。 例如达标线85分,有100名符合条件候选人,10名有色人种,90名白人,那么如果企业全部雇用白人就会受到EEOC的调查。  其实际意义在于鼓励有色人种参与,接受高等教育(在此之前,受高等教育也是没用的,因为照样找不到工作),并且让有色人种精英带动所在群体的发展,以弥合种族社区差异。 &lt;/p&gt;&lt;p&gt;3。 但在实际执行过程中,出现了一些无解问题。 主要是有色人种符合条件的相对有限,最初的精英储备雇完后,由于教育有滞后性,出现了无人可雇的情况。 即达标线85分,200申请者, 100符合条件候选人, 100人都是白人,而其中不符合条件的申请者中却有50个有色人种。 那么企业按条件雇用,仍然会遭到非议。 这里还不提有色人种中有讼棍的存在。为了避免EEOC调查带来的企业成本消耗。 企业/学校/政府推出了比例制度。 即故意设立一些无关紧要的花瓶位置雇用有色人种。以达到人口比例,这出现了企业清洁工里大批黑人,高管全是白人的情况。 另外一个就是绩效不明显的如学校,刻意降低标准,录用不符合条件的学生,以达到“多元化”的结果。(例如亚裔上同一所大学平均要比白人多140分,比黑人多450分的局面) 这种情况直接导致了巴克案在最高法庭的胜诉,最高院明确表示,针对特定种族的配额方式违宪。 然而仍然私下里有各种比例。(如哈佛和藤校)&lt;/p&gt;&lt;p&gt;另外一点就是一些少数族裔(亚裔)通过努力得到的成就使得渴望同样资源(收入)但不愿意投入相应努力 (Ben Carson 这种努力读书的黑人在黑人社区往往被嘲笑为 act like white) 的族裔进行敌视与打压。 &lt;/p&gt;&lt;p&gt;4。奥巴马执政期间,对AA 的混用进一步恶化。 甚至局部开始了针对特定少数族裔(亚裔)的逆向种族隔离。加州出现了SCA5 (即试图按人口比例进行大学招生,加州拉美裔占39%,黑人5%,亚裔15%, 然而亚裔占高等大学人口40%),其他蓝州大学出现了“种族分数”即你考试的及格线按肤色定,企业出现了种族雇用(即亚裔程序员要N面,考试,非裔举行个聚餐,现场发Offer),种族纪律(不符合企业年度审核的雇员要辞退,那么这个辞退比例也要看人口比例来),甚至有人建议监狱人口也要按种族比例来的“建议”(亚裔犯罪率明显低)而奥巴马政府更是要求各大学要顾及“多元化”,录取特定族裔学生。&lt;/p&gt;&lt;p&gt;5。川普废止的就是奥巴马期间的建议 (4 部分)。 但对最初的AA并无涉及。川普推行的恰恰是忽略种族要素,而以学业和能力进行录取的 真。平权。 &lt;/p&gt;&lt;p&gt;有兴趣的朋友可以看看我的相关研讨文章: &lt;/p&gt;&lt;a href=&quot;https://zhuanlan.zhihu.com/p/28013952&quot; data-draft-node=&quot;block&quot; data-draft-type=&quot;link-card&quot; class=&quot;internal&quot;&gt;刘翔熙:O编辑总结:AA(权益倾斜)的昨天,今天和明天(上)&lt;/a&gt;&lt;a href=&quot;https://zhuanlan.zhihu.com/p/28013961&quot; data-draft-node=&quot;block&quot; data-draft-type=&quot;link-card&quot; class=&quot;internal&quot;&gt;刘翔熙:O编辑总结:AA(权益倾斜)的昨天,今天和明天(中)&lt;/a&gt;&lt;a href=&quot;https://zhuanlan.zhihu.com/p/28013970&quot; data-draft-node=&quot;block&quot; data-draft-type=&quot;link-card&quot; class=&quot;internal&quot;&gt;刘翔熙:O编辑总结:AA(权益倾斜)的昨天,今天和明天(下)&lt;/a&gt;</textarea>


<div class="zh-summary summary clearfix">

谢邀,不过题主的问题偏了。 1。affirmative Action 不应翻译成平权,而是权益倾斜。 因为affirm 的意思有 offer (someone) emotional support or encouragement的意思。而affirmtive 也含有鼓励,肯定的意思。 因此翻译成 鼓励行为 (词义翻译)或 权益倾…

<a href="/question/283883806/answer/434944222" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-07-05" target="_blank" href="/question/283883806/answer/434944222">编辑于 2018-07-05</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-25361907"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>30 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="3">
<h2><a class="question_link" href="/question/283973922/answer/434949631" target="_blank" data-id="25381898" data-za-element-name="Title">
我现在大三快毕业了 学的投资 但是想毕业后去日本学动漫 没有一点美术基础 报考什么学校好呢?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="109151215"
data-atoken="434949631"
data-collapsed="0"
data-created="1530798046"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="0"
data-zop
>
<link itemprop="url" href="/question/283973922/answer/434949631">
<meta itemprop="answer-id" content="109151215">
<meta itemprop="answer-url-token" content="434949631">
<a class="zg-anchor-hidden" name="answer-109151215"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>142</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">142</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">
<span class="name">知乎用户</span></span><span title="Heading to animation" class="bio">
Heading to animation
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="142">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">142</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="25381898" data-action="/answer/content" data-author-name="馒头" data-entry-url="/question/283973922/answer/434949631">

<textarea hidden class="content">&lt;p&gt;谢 &lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6&quot; data-hash=&quot;00c0e955b58805c94bd6983ec1a387c6&quot; data-hovercard=&quot;p$b$00c0e955b58805c94bd6983ec1a387c6&quot;&gt;@zecy&lt;/a&gt; 邀。看完题主描述,仿佛看到了当年的自己。刚好上个月从某综合动画娱乐公司收到offer结束校招,在这里分享一下个人经验,希望对你有所帮助(小马过河,谨慎参考)。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;高考前决定投身动画业界,填报志愿时,首先考虑从哪个角度切入业界,据此选择专业。&lt;/p&gt;&lt;p&gt;技术(2D/3D):2D报中国传媒大学动画学院,3D报数字媒体技术/数字媒体艺术专业。简单调查发现日本有很多作品外包给中国,说明国内应该不缺这方面人才。&lt;/p&gt;&lt;p&gt;从政(广电总局/文化局):家庭资源?政治敏感度?城府?否。&lt;/p&gt;&lt;p&gt;业界文职(财务/会计/融投资等):在片头曲后正片前,一般会有一句「この番組はご覧のスポンサーの提供でお送りします」并打出很多公司的LOGO,于是去了解了动画製作委员会制度。&lt;/p&gt;&lt;p&gt;经过非常简单的业界调查和自我分析,选择了第三条路,并在学校和专业中选择舍学校保专业,顺利进入某校读金融学。当时想得挺简单的,实在不行还能去银行。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;2. &lt;/p&gt;&lt;p&gt;本科四年其实过得也并不明确,到大三为止都只是按部就班地学习、参加学生会和社团活动。虽然迷茫,但为了在毕业决定去路时不会因为成绩被拖后腿,把GPA保持在了较高水平。&lt;/p&gt;&lt;p&gt;期间,看了包括《食梦者》、《白箱》在内的不少介绍业界工作情况的动画作品,说实话兴趣不大,但为了了解业界还是压着自己看完了。大约从这时开始看动画已经不完全按喜好来,而是有必要看的就必须看完;阅读了三文娱、动画学术趴的文章,以及知乎上的业界相关回答;请教了各方意见。首先是自己金融系的老师们,担心中国人老师给的意见局限于国内情况,还请教了很多国外教授,还在领英上大胆发私信给奥飞动漫等公司的员工,在知乎上发私信给业界前辈请教。&lt;/p&gt;&lt;p&gt;最终,考虑到毕业时作为千万大学毕业生的普通一员,学历普通,没有特别出众的技能和竞争力,难进光线传媒、奥飞动漫这样的大公司,进去了也不一定能被分配到投资部门。哪怕在国内继续读个硕士,同等条件的毕业生也是海了去了,于是放弃保研决定去日本留学,打算毕业后在日本的动画业界工作几年再回国,师夷长技以制夷,曲线救国(有够中二)。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;3. &lt;/p&gt;&lt;p&gt;确定了日本留学的大方向,在专门学校、考大学院(对应中文里的研究生院)里选择时,做了以下事情:&lt;/p&gt;&lt;p&gt;一是把能通过搜索引擎了解的信息、能通过搜索引擎解决的问题都解决了。包括但不限于百度、博客、微博、知乎。比如,把微博上的国人原画师&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/yue105&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@就叫玥&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/niuya123&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@希&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=http%3A//weibo.com/u/5223400255&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@TYC&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/jd342&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@言爱咕咕&lt;/a&gt;,以及配音演员&lt;a href=&quot;//link.zhihu.com/?target=http%3A//weibo.com/kkryu&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@刘婧荦&lt;/a&gt;等在日前辈的相关微博都读完了(强烈推荐阅读:「&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/yue105%3Fis_tag%3D1%26tag_name%3D%25E6%25A2%25A6%25E5%259C%25A8%25E4%25B8%259C%25E4%25BA%25AC%25E9%2582%25A3%25E7%2582%25B9%25E4%25BA%258B%23_0&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;梦在东京那点事&lt;/a&gt;」),把&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6&quot; data-hash=&quot;00c0e955b58805c94bd6983ec1a387c6&quot; data-hovercard=&quot;p$b$00c0e955b58805c94bd6983ec1a387c6&quot;&gt;@zecy&lt;/a&gt;、&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/15fab0942ec9ce65c09bb055ffe58bed&quot; data-hash=&quot;15fab0942ec9ce65c09bb055ffe58bed&quot; data-hovercard=&quot;p$b$15fab0942ec9ce65c09bb055ffe58bed&quot;&gt;@喵小粒&lt;/a&gt;、&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/24899f12dd48bb86191ab79febb1668c&quot; data-hash=&quot;24899f12dd48bb86191ab79febb1668c&quot; data-hovercard=&quot;p$b$24899f12dd48bb86191ab79febb1668c&quot;&gt;@叶佳桐&lt;/a&gt;、&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/b7ebd539ed5b95ad8f92eab64b565867&quot; data-hash=&quot;b7ebd539ed5b95ad8f92eab64b565867&quot; data-hovercard=&quot;p$b$b7ebd539ed5b95ad8f92eab64b565867&quot;&gt;@金渡江&lt;/a&gt; 等前辈的业界相关回答也都读完了。&lt;/p&gt;&lt;blockquote&gt;“你在面临选择的时候,不可能把所有选择都亲自经历过一遍再读档重来,所以不要给自己太大压力,只要尽力做到消除信息不对称,相信你一定会做出当时自己可以做出的最好的选择的。在做了一个选择以后,也不要再想着‘如果我当时选了另一条路又会如何如何’,否则无论你做哪个选择,你永远都在患得患失。”&lt;/blockquote&gt;&lt;p&gt;二是将自己的目标、至今做过的努力、眼下的问题尽量简短概括请教前辈意见。比如,在知乎上私信咨询了&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6&quot; data-hash=&quot;00c0e955b58805c94bd6983ec1a387c6&quot; data-hovercard=&quot;p$b$00c0e955b58805c94bd6983ec1a387c6&quot;&gt;@zecy&lt;/a&gt;和&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/15fab0942ec9ce65c09bb055ffe58bed&quot; data-hash=&quot;15fab0942ec9ce65c09bb055ffe58bed&quot; data-hovercard=&quot;p$b$15fab0942ec9ce65c09bb055ffe58bed&quot;&gt;@喵小粒&lt;/a&gt;两位前辈,在领英上做networking贸然但尽量诚恳地发消息给业内前辈请教、在微博上请教已经在日本动画业界工作的前辈们(在把他们的相关微博全看完的前提下)。部分摘录如下:&lt;/p&gt;&lt;p&gt;-&lt;/p&gt;&lt;blockquote&gt;关于取舍我实在不能给出什么意见。作为我个人来说,是希望读完大学再选择工作或者留学深造的。也算给自己在国内留条出路吧。而日本动画公司,技术类的肯定是看实力,制作进行需求量大,比较辛苦,要求会开车日语好任劳任怨,不过3D的不需要开车就是了。最后的选择权还是看你自己究竟想走什么路,想做什么,遇到困难自己是否可以克服,选择后是否会后悔之类,这个是看个人的。以及,我个人大学毕业后才觉得,大学并不是技校,如果并不是读得非常需要钻研理论的专业,大学给予我们的是人生体验,人际交往类,还有自我认知方面的收获,所以,希望你可以做出选择,并为之努力,而不后悔。&lt;br&gt;—— 在日本某动画公司做原画的中国人前辈&lt;/blockquote&gt;&lt;p&gt;-&lt;/p&gt;&lt;blockquote&gt;“别进动画公司,想办法进大公司或者手游公司吧。而且老实说,一年一个变化……日本动画公司是吃人的地方,身体不好家里没钱的不推荐,不会画画的进动画公司只能当制作进行。我学姐曾经是,要每天半夜开车,根本没有睡觉时间,然后身体垮了辞职了……反正你要入行就要做好心理准备,光有爱是不够的。”&lt;br&gt;—— 在日本某动画公司做3D的中国人前辈&lt;/blockquote&gt;&lt;p&gt;-&lt;/p&gt;&lt;blockquote&gt;「做动画不是职业」,这点你无论如何也要清楚。&lt;br&gt;我们说一个「职业」的时候,是作为一个「养家糊口的手段」来衡量的,你付出劳动,然后获得回报,用这份回报支持你的生活。短期来看付出得越少,回报得越多的职业就越理想;长期来看,在确保一定付出回报率的同时,越稳定的职业越好。选择职业,是必须要考虑未来的:这份工作能不能支持你 5 年后的生活、10 年后的生活、30 年后的生活、你老之后的生活。你要成家立业,你要照顾老人孩子,你还要为你自己的暮年做打算。&lt;br&gt;做动画,说得空一点的,是个梦想,值得你牺牲一切去追求;说得实一点的,是一项事业,必须成为你生活的中心。除此以外的东西,你就只能舍弃。并不是说你的生活就一定没有保障,未来就一定暗淡无光,但是说,上述的这些就不应该成为你去顾忌考虑的东西。所以,你不能用「职业」或者「工作」的标准来衡量。&lt;br&gt;但是,生活的压力并不是你不去管就不存在。你住宿吃饭是要钱的,你生病看医生是要钱的,你谈恋爱结婚是要钱的,你成家立业是要钱的,你照顾赡养父母是要钱的。你对动画的爱是不是足够让你全然不顾这些东西,或者你家里是不是富裕到让你不用为这些事情烦恼呢?你有信心再过 10 年、20 年,你的爱依然不变吗?&lt;br&gt;如果答案是否定的,如果动画并不是你生活中的全部,如果你还只是想把做动画当作是一项「工作」,那么入动画行业就是不理智的行为。&lt;br&gt;—— &lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6&quot; data-hash=&quot;00c0e955b58805c94bd6983ec1a387c6&quot; data-hovercard=&quot;p$b$00c0e955b58805c94bd6983ec1a387c6&quot;&gt;@zecy&lt;/a&gt; &lt;/blockquote&gt;&lt;p&gt;-&lt;/p&gt;&lt;blockquote&gt;关于选择哪条路,一切看你的目的,以及天赋。想太多无用,选一件事尽力即可。动画产业链从生产制作到发行销售,可做工作有很多。学好手头的,有目的性地去创造机会让自己入行。&lt;br&gt;有时不是你心心念念想要做什么就一定会成,但给各种机会都做好准备总没错。&lt;br&gt;你该做什么谁也不能替你决定,先看看自己适合做什么呗。&lt;br&gt;关于留学,有钱就去呗,多见识点总没错。但学回来未必能在国内用上。&lt;br&gt;动画公司的动画制作部门都招实习生的。但你得会用动画制作软件,别的推广发行部门似乎不招实习生。&lt;br&gt;—— &lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/15fab0942ec9ce65c09bb055ffe58bed&quot; data-hash=&quot;15fab0942ec9ce65c09bb055ffe58bed&quot; data-hovercard=&quot;p$b$15fab0942ec9ce65c09bb055ffe58bed&quot;&gt;@喵小粒&lt;/a&gt; &lt;/blockquote&gt;&lt;p&gt;-&lt;/p&gt;&lt;p&gt;三是咨询了不下五家中介、了解了学部编入(对应中文本科转学?)、专门学校、语言学校、大学院研究生制度(对应中文旁听生),也咨询了很多留学日本考大学院的前辈。大四寒假去了一家漫画公司实习,期间得知老板也是留日归来,大胆拦下老板请教。&lt;/p&gt;&lt;p&gt;综合各方意见,权衡利弊最终决定跳开中介自己DIY语言学校,然后考大学院。&lt;/p&gt;&lt;p&gt;有了方向以后问题就简单多了。办材料,考托福,考JLTP,找老师写推荐信……由于日本的研究生院是7月考试来年4月入学,7月本科毕业后再赴日势必要gap一年,于是在3月份之前完成了实习和毕业论文,利用大四下学期,4月份起赴日读语言学校并备考,计划在7月考日本的大学院。考虑到日本绝大多数动画公司都位于东京,于是瞄准了东京大学大学院(理由很简单,为了不在简历关因为学历被刷掉),过程过于枯燥略过不表,结果是合格了。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;4. &lt;/p&gt;&lt;p&gt;读研期间,做了几件对进入这个业界比较有帮助的事:&lt;/p&gt;&lt;p&gt;一是通过各种途径认识了集英社、东映动画、Production I.G、万代南梦宫等公司的不同岗位的前辈,了解业内现状、请教意见、不断修正自己的方案。其中,有位前辈说的话我觉得挺精辟的:&lt;/p&gt;&lt;blockquote&gt;「如果你&lt;b&gt;只是对动画感兴趣喜欢看动画&lt;/b&gt;,那绝对不要进这个大坑,你的热爱不出三个月就会燃烧尽的。但如果你&lt;b&gt;有想要实现的事情&lt;/b&gt;,那可以考虑来。最简单的比如你想参与某部作品,画它的原画。」&lt;/blockquote&gt;&lt;p&gt;从知乎上的&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6&quot; data-hash=&quot;00c0e955b58805c94bd6983ec1a387c6&quot; data-hovercard=&quot;p$b$00c0e955b58805c94bd6983ec1a387c6&quot;&gt;@zecy&lt;/a&gt;、&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/15fab0942ec9ce65c09bb055ffe58bed&quot; data-hash=&quot;15fab0942ec9ce65c09bb055ffe58bed&quot; data-hovercard=&quot;p$b$15fab0942ec9ce65c09bb055ffe58bed&quot;&gt;@喵小粒&lt;/a&gt;、&lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/59cb9b4cacf93bb2bdcfa4f85b44fb9f&quot; data-hash=&quot;59cb9b4cacf93bb2bdcfa4f85b44fb9f&quot; data-hovercard=&quot;p$b$59cb9b4cacf93bb2bdcfa4f85b44fb9f&quot;&gt;@舔猫不成改吸狗&lt;/a&gt;,到微博上的&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/yue105&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@就叫玥&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.weibo.com/niuya123&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@希&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=http%3A//weibo.com/u/5223400255&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;@TYC&lt;/a&gt;、到自己的学长学姐(通过本专业学姐认识了她的高中同学——东京某动画公司的二原,然后又认识了其他公司的原画、美术、CG、制作进行),再到各种漫展活动和招聘会。为了实现目标,真的,脸皮能有多厚就有多厚,面子算什么?该上前搭话的时候就搭话,大不了失败一次而已。但前提是,不当伸手党,不让别人为自己的人生做决定,不要浪费别人的时间,问之前先把自己要问的内容理清楚,把自己至今为止的努力,摆出来,证明自己的诚意。&lt;/p&gt;&lt;p&gt;以前总觉得,把想进动画行业挂在嘴边是一件很羞耻的事,万一失败了岂不是反遭人耻笑。但比起遭人耻笑,更害怕无法实现梦想,这么一想丢脸也无所谓了。当我改变做法以后,发现有时别人会主动说,“诶,我有一个朋友/同学/后辈好像在这个业界工作,要不介绍你们认识?”,有着同样志愿的好友前辈们,会愿意帮你无数次修改简历和面试稿,帮你做模拟面试。“当你真正想做一件事的时候,全世界都会来帮你。”前提是,要让别人知道你真的想做这件事。&lt;/p&gt;&lt;p&gt;二是研一就通过暑期实习拿到了一家大公司的offer,所属业界是自己的第二兴趣。有了垫底的offer就不必只为能留在日本而投五六十家公司,可以节省时间精力专攻自己想进的。同时,由于是毕业后N年内随时可以入职的特殊offer,如果亲身试过以后发现自己不适合在动画业界工作,随时可以转行,降低试错风险。&lt;/p&gt;&lt;p&gt;三是在一家中日娱乐版权公司实习,验证自己是否是叶公好龙、是否真的想从事这行(虽然最终也没验出个结果来,苦笑)。同时,也可以在校招的面试中有话可说,证明自己「不仅仅是喜欢看动画,而且也主动从消费者转为生产者,落实到实际行动」,从众多留学生中脱颖而出。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;5. &lt;/p&gt;&lt;p&gt;在日本,校招大致可分两种岗位:综合职和技术职。综合职无所谓专业,谁都可以报,面试问的往往是「学生時代一番頑張ったこと(学生时代最努力的一件事)」、看的是你的「人間性」。有参与动画製作委员会的公司在校招时一般都设有综合职。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;我一共投了以下公司(按日文罗马音顺序。括号内为参与动画製作委员会并投资的动画作品):&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.adk.jp/about/keydriver/contents/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;ADK&lt;/a&gt;(旭通。代表作:哆啦A梦、蜡笔小新、海贼王、夏目友人帐、黑子的篮球等)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=http%3A//avex-pictures.co.jp/lineup/animation&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;AVEX&lt;/a&gt;(艾回。代表作:阿松系列、Yuri!!! on Ice、暗杀教室第2季)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=http%3A//www.bandai.co.jp/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;万代&lt;/a&gt;、&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.bandainamcoent.co.jp/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;万代南梦宫&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//v-storage.bandaivisual.co.jp/product-anime/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;Bandai Visual&lt;/a&gt;(万代影视。代表作:MEGALO BOX、叛逆的鲁路修剧场版总集篇)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.cygames.co.jp/products/animation/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;Cygames&lt;/a&gt;(代表作:巴哈姆特之怒系列、碧蓝幻想)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=http%3A//www.hakuhodody-media.co.jp/cases/entertainment/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;博報堂DYメディアパートナーズ&lt;/a&gt;(叛逆的鲁路修系列、OVERLOAD第3季)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.kadokawa.co.jp/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;KADOKAWA&lt;/a&gt;(角川。代表作:刀剑神域、约会大作战、新海诚系列动画电影)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.sme.co.jp/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;索尼音乐娱乐&lt;/a&gt;(&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.aniplex.co.jp/lineup/anime/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;Aniplex&lt;/a&gt;和&lt;a href=&quot;//link.zhihu.com/?target=http%3A//a1p.jp/works/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;A-1 Pictures&lt;/a&gt;母公司)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=https%3A//www.marv.jp/av/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;MARVELOUS!&lt;/a&gt;(游戏王、刀剑乱舞、东京喰种:re、光之美少女、家庭教师)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;//link.zhihu.com/?target=http%3A//www.tms-e.co.jp/&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;TMS&lt;/a&gt;(名侦探柯南、鲁邦三世)&lt;/p&gt;&lt;p&gt;……&lt;/p&gt;&lt;p&gt;过程漫长而又折磨,最终还是成功拿到其中某家公司的offer,同时也是两年前刚来日本时就确定想进的公司。&lt;/p&gt;&lt;p&gt;从结果上看确实是好的,但我在这之前已经做好了所有公司全挂的准备:&lt;/p&gt;&lt;p&gt;一是留级一年,保留应届毕业生身份继续找(在日本很常见)。&lt;/p&gt;&lt;p&gt;二是入职现在实习的公司,入职后通过社招再找。&lt;/p&gt;&lt;p&gt;三是入职之前拿到offer的公司,也是入职后通过社招再找。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;我没有投诸如京都Animation、Sunrise、Production I.G、PA Works、BONES、MAD HOUSE、MAPPA这些动画制作公司。这些公司只是动画製作委员会出资雇来制作动画的打工仔,在动画製作委员会这一现行制度下也并无法拥有作品版权,遑论IP开发利用。&lt;/p&gt;&lt;p&gt;PS:东京电视台等各大电视台、集英社、講談社、小学館难度太高,为了节省时间精力,没投;ポニーキャニオン(波丽佳音。代表作:轻音少女)、電通(吉卜力大多数作品)由于氛围不喜欢,没投;东宝、东映、东映动画因为年龄限制投不了;各大手办公司、LAWSON、松竹,虽然也有参与动画製作委员会,但主营业务不感兴趣(手办、是便利店、歌舞伎)所以也没报。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;6. &lt;/p&gt;&lt;p&gt;我知道有北大物理系毕业后来日本读专门学校,毕业后做制作进行的前辈,也了解过崔蓓蓓的故事(&lt;a href=&quot;//link.zhihu.com/?target=https%3A//tieba.baidu.com/p/2326580233&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;访谈:我就是这样进入Production I.G的&lt;/a&gt;)。我无意过多评价他人的选择。我想进动画行业,有自己想要实现的理想,但我同时又想兼顾工作收入,希望家人对我的教育投资有所回报,所以我没有选择专门学校,考虑再三最终选择了这条路。虽有妥协意味,因为是我自己做的选择,即便无数次迷茫过,也从未有过后悔。&lt;/p&gt;&lt;p&gt;现在我的确是作为一个成功者来分享经验,从结果上看可能你会说我列下的目标全都实现了,站着说话不腰疼、肉食者鄙。但是,我从留学之初起就一直是举债,如今也只是产生了预期回报,实际上还没回本。&lt;/p&gt;&lt;p&gt;因为穷,每一步都走得战战兢兢,如履薄冰。&lt;/p&gt;&lt;p&gt;虽然穷,该投资的钱绝不省,只要能给出低风险的预期回报即可。&lt;/p&gt;&lt;p&gt;做动画,实质上也就是筹集资金、投资作品、获得回报。教育投资和动画投资,本质其实是一样的,题主学投资的话应该能理解。&lt;/p&gt;&lt;p&gt;而且,我做了这么多功课,搜集了这么多情报,请教了这么多前辈,但我制定的策略很可能依然不是最优解。在求职期我才了解到,&lt;a href=&quot;//link.zhihu.com/?target=https%3A//zh.moegirl.org/Aniplex&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;Aniplex&lt;/a&gt;有通过社招直接从中国招聘人才到日本本社的,也有&lt;a href=&quot;//link.zhihu.com/?target=http%3A//ir.kadokawa.co.jp/recruit/2019/people/people03.html&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;通过广州天闻角川进入日本角川总部当企画P的&lt;/a&gt;(P是produce的意思,对应中文策划制作人,不同于制作現場的現場P,企画P是往动画项目策划方向培养),&lt;a href=&quot;//link.zhihu.com/?target=https%3A//jobs.netflix.com/locations&quot; class=&quot; wrap external&quot; target=&quot;_blank&quot; rel=&quot;nofollow noreferrer&quot;&gt;Netflix在世界各地都有招聘&lt;/a&gt;。想进日本动画业界,并不非得要来日本。不过我觉得,在日本求学,不局限于语言学习,而是亲身体会这个国家的语言文化、企业文化,是一件稳赚不赔的事。&lt;/p&gt;&lt;p&gt;最后,我花费了6年,无数折腾才实现当初定下的目标,如果你真的有心想要进入这个业界,务必做好长线操作、长期战斗的心理准备和金钱准备。&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">

谢 <a class="member_mention" href="//www.zhihu.com/people/00c0e955b58805c94bd6983ec1a387c6" data-hash="00c0e955b58805c94bd6983ec1a387c6" data-hovercard="p$b$00c0e955b58805c94bd6983ec1a387c6">@zecy</a> 邀。看完题主描述,仿佛看到了当年的自己。刚好上个月从某综合动画娱乐公司收到offer结束校招,在这里分享一下个人经验,希望对你有所帮助(小马过河,谨慎参考)。 高考前决定投身动画业界,填报志愿时,首先考虑从哪个角度切入业界,据此选择专…

<a href="/question/283973922/answer/434949631" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-07-05" target="_blank" href="/question/283973922/answer/434949631">编辑于 15:01</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-25381898"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>18 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="0">
<meta name="disableCopyAvatar" content="https://pic4.zhimg.com/da8e974dc_m.jpg">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-6" target="_blank" class="meta-item copyright">禁止转载</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="4">
<h2><a class="question_link" href="/question/26433689/answer/435150836" target="_blank" data-id="2756337" data-za-element-name="Title">
发表顶级论文是怎样一种体验?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="109187776"
data-atoken="435150836"
data-collapsed="0"
data-created="1530823772"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/26433689/answer/435150836">
<meta itemprop="answer-id" content="109187776">
<meta itemprop="answer-url-token" content="435150836">
<a class="zg-anchor-hidden" name="answer-109187776"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>291</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">291</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$yifanjing"
target="_blank" href="/people/yifanjing"
>Yifan</a><span class="icon icon-badge-best_answerer icon-badge" data-tooltip="s$b$优秀回答者"></span></span><span class="badge-summary"><a href="/people/yifanjing#hilightbadge" target="_blank">数学话题优秀回答者</a></span>



<span title="Graph Theory and Combinatorics" class="bio">
Graph Theory and Combinatorics
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="291">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">291</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="2756337" data-action="/answer/content" data-author-name="Yifan" data-entry-url="/question/26433689/answer/435150836">

<textarea hidden class="content">&lt;p&gt;前两天刚被FOCS接受,算是理论计算机的顶会了。&lt;/p&gt;&lt;p&gt;证明思路大概是17年下半年就有的,算是给出了一个open problem的最好的回答。当时我是没听说过FOCS的,本来想写下来投数学方向的顶刊。后来老板建议我们投一下FOCS,因为证明中(用了regularity lemma)自带了一个算法。&lt;/p&gt;&lt;p&gt;2月份老板就让我写,但那时候我在做另一个问题,就一直拖着。然后三月中旬另一个问题做完了,开始加班加点的写这篇FOCS的论文。那时候离deadline还有10天,基本上每天睡不到4个小时,写了一周。初稿有60多页,后来删了20页证明,终稿不到40页。删除的证明是这个问题的另一个角度的推广定理,但是老板觉得和算法没关系,就先删了。为了写这个文章,我都没去好朋友 &lt;a class=&quot;member_mention&quot; href=&quot;//www.zhihu.com/people/45a39107a98740bfe9b5e525d278800a&quot; data-hash=&quot;45a39107a98740bfe9b5e525d278800a&quot; data-hovercard=&quot;p$b$45a39107a98740bfe9b5e525d278800a&quot;&gt;@许汝培&lt;/a&gt; 组织的会议,很遗憾。。&lt;/p&gt;&lt;p&gt;不管怎么说,能中还是很开心的。当时时间太紧,文章写的比较乱。我是文章投了之后才知道FOCS是顶会的,之前我只听说过STOC和SODA。reviewer的评语意外的positive,夸的我有点不好意思。不过还是收到了一个3分 weakly accept,那个reviewer说这是篇很好的数学论文,不过为啥投到计算机的会议。。&lt;/p&gt;&lt;p&gt;顺便给大家看看其中一个reviewer给我挑的部分语法错误,这只是我截取的一部分,太多了…虽然他给文章打了满分。。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-232087aab1c6dd164807cfba8423966e_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;small&quot; data-rawwidth=&quot;1242&quot; data-rawheight=&quot;2208&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1242&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-232087aab1c6dd164807cfba8423966e_r.jpg&quot;&gt;&lt;/figure&gt;</textarea>


<div class="zh-summary summary clearfix">
<img src="https://pic3.zhimg.com/50/v2-232087aab1c6dd164807cfba8423966e_200x112.jpg" data-caption="" data-size="small" data-rawwidth="1242" data-rawheight="2208" data-watermark="original" data-original-src="v2-232087aab1c6dd164807cfba8423966e" data-watermark-src="v2-fe5541918cfc8a1b91b42c6356c793e5" data-private-watermark-src="v2-92553e8b0e2cfc9b525d6b3afe139187" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic3.zhimg.com/50/v2-232087aab1c6dd164807cfba8423966e_r.jpg">
前两天刚被FOCS接受,算是理论计算机的顶会了。证明思路大概是17年下半年就有的,算是给出了一个open problem的最好的回答。当时我是没听说过FOCS的,本来想写下来投数学方向的顶刊。后来老板建议我们投一下FOCS,因为证明中(用了regularity lemma)自带了一…

<a href="/question/26433689/answer/435150836" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-07-06" target="_blank" href="/question/26433689/answer/435150836">编辑于 2018-07-06</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-2756337"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>26 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="5">
<h2><a class="question_link" href="/question/283743009/answer/435085441" target="_blank" data-id="25330446" data-za-element-name="Title">
如何评价杨占家在《霸王别姬》、《卧虎藏龙》等电影中设计的建筑?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="109176006"
data-atoken="435085441"
data-collapsed="0"
data-created="1530808460"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/283743009/answer/435085441">
<meta itemprop="answer-id" content="109176006">
<meta itemprop="answer-url-token" content="435085441">
<a class="zg-anchor-hidden" name="answer-109176006"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>282</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">282</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">
<span class="name">知乎用户</span></span><span title="多用动词,不用形容词" class="bio">
多用动词,不用形容词
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="282">


<span class="answer-tag">
<span class="text">收录于 </span>


<span class="text">编辑推荐</span>



</span>


<span class="zg-bull text">•</span><span class="voters text"><a href="#" class="more text"><span class="js-voteCount">282</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="25330446" data-action="/answer/content" data-author-name="朴世禺" data-entry-url="/question/283743009/answer/435085441">

<textarea hidden class="content">&lt;p&gt;杨老可能并不是一个好的建筑师。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-c86703c0c83334831d8208970dee3827_b.jpg&quot; data-rawwidth=&quot;1430&quot; data-rawheight=&quot;594&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1430&quot; data-original=&quot;https://pic1.zhimg.com/50/v2-c86703c0c83334831d8208970dee3827_r.jpg&quot;&gt;&lt;figcaption&gt;聚星楼,《卧虎藏龙》剧照&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;就拿卧虎藏龙中出现的这个聚星楼来说,作为一个重点出现的对象,其建筑考据及建筑设计都是有硬伤的。&lt;/p&gt;&lt;p&gt;从剧中可以看到其设定是一个徽派的传统建筑,从转角处进入,功能为酒馆。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-f718d89df192140f8521c27f994792ac_b.jpg&quot; data-rawwidth=&quot;514&quot; data-rawheight=&quot;729&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;514&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-f718d89df192140f8521c27f994792ac_r.jpg&quot;&gt;&lt;figcaption&gt;聚星楼平面图(应为设计稿,影片中的最终空间在最右侧折线楼梯处有改动)&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;但当我们仔细阅读其平面时,会发现实际上它有一个非常奇特的空间布局:刚一进入建筑便是一通高的“中庭”空间,而位于空间正中占据整个入口统治地位的,是一座尺度大到与整个建筑并不匹配的楼梯。而在门厅的右翼,辅助的折型楼梯上方同样全部挑空,使楼梯作为建筑要素独立存在。&lt;/p&gt;&lt;p&gt;从建筑史的角度来讲,这种楼梯的布局方式在中国传统建筑中极为少见,通常在传统建筑中室内的楼梯会被布置于房间一侧或两侧,或是隐藏于房间与房间之间,其多数作为一项解决上下楼问题的技术运用,而非被表现的对象出现。最为经典也最早的楼梯本身作为空间表现中心的案例却是米开朗基罗在劳伦齐阿纳图书馆中的楼梯设计,而这种门厅模式在国内应用大约已经是民国的事了。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-99cf083c0ec2e79b3734f32f69e6e329_b.jpg&quot; data-rawwidth=&quot;600&quot; data-rawheight=&quot;421&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;600&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-99cf083c0ec2e79b3734f32f69e6e329_r.jpg&quot;&gt;&lt;/figure&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-3e562abbe97a3395ce78cf0c34474c12_b.jpg&quot; data-rawwidth=&quot;400&quot; data-rawheight=&quot;293&quot; data-size=&quot;normal&quot; class=&quot;content_image&quot; width=&quot;400&quot;&gt;&lt;figcaption&gt;米开朗基罗,首次将楼梯作为要素进行建筑表现&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;从构造经济性方面讲,如此大尺度的楼梯单独设计,其必然要将其本身作为结构去考虑,而无法借用其他构件的承载力,这就意味着楼梯本身面对的用料尺度就接近于梁栿的用料——可以看楼梯的长度与建筑跨度之比例,注意,楼梯本身在平面上只是投影,实际要考虑的跨度是其斜长,这就对楼梯自身的结构提出更高的要求。&lt;/p&gt;&lt;p&gt;而从空间经济性上讲,这种尺度的楼梯配合天井的布局,尽管作为门厅空间的设计来讲在现代建筑中常见,但那更多地是面对更大规模的公共建筑的处理手段,而非这种小酒馆所适宜应用的。在此我们不谈平面中的秩序,只单纯地思考一个问题:若您是酒馆老板,您是否愿意租下这栋房子?&lt;/p&gt;&lt;p&gt;对于有经营头脑的老板来讲,答案应当是否定的:为了两部楼梯的布置,牺牲了至少四成的营业面积,其中面积损失最严重的还是最为重要的入口厅堂处;此外,吧台的布置位置由于超尺度楼梯的存在,也成为了一个不大不小的问题,而二楼空井周遭的环廊,尤其是两个空井之间的夹道,似乎完全没有用于商业的价值。&lt;/p&gt;&lt;p&gt;于是,若一定要将场景当成建筑并从建筑角度看,与建筑史不符、设计质量也不高。即便在《卧虎藏龙》这种经典影片的一些重要场景中,建筑的硬伤也是明显的,这不能以杨老是否具有建筑学背景及是否是大师而否认。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;但!在吃到珍馐美味的时候却从电冰箱的角度指责烤箱不能制冷,对我们能否做一个更好地电冰箱并无帮助。&lt;/p&gt;&lt;p&gt;所以,真的不应套用建筑设计或建筑史的标准去讨论他的作品。正如之前在&lt;a href=&quot;https://www.zhihu.com/question/264685000/answer/286578160&quot; class=&quot;internal&quot;&gt;知乎用户:从古建筑的角度来说,陈凯歌《妖猫传》在襄阳建的唐城怎么样?&lt;/a&gt;一文中所提,场景设计有自己的语境,这个语境与建筑史只有部分重叠而不完全属于建筑史。&lt;/p&gt;&lt;p&gt;好在,至少我们可以在冰箱和烤箱之间找到角度平行地讨论工业设计的优劣,从而获得一些对电冰箱设计有帮助的东西。&lt;/p&gt;&lt;p&gt;从设计的反常之处去读他设计的意图,然后再去判断这种设计的合理性与有效性,或许是个更好的学习过程。&lt;/p&gt;&lt;p&gt;所有的设计动作实际上在影片中是清晰的。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-42b6d57781897daac0e34ceb65187732_b.jpg&quot; data-rawwidth=&quot;1120&quot; data-rawheight=&quot;477&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1120&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-42b6d57781897daac0e34ceb65187732_r.jpg&quot;&gt;&lt;/figure&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-1a6ca299ef9206ce20e0b76ef6ab00b7_b.jpg&quot; data-rawwidth=&quot;1121&quot; data-rawheight=&quot;478&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1121&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-1a6ca299ef9206ce20e0b76ef6ab00b7_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;六边形的空井将楼梯独立,并非是对楼梯本体做表现,而是为在拍摄时机位有合适的距离,以及将主要人物与群演在画面中从空间上进行区分。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-d4816d3154a128ec8e6392cd24b70587_b.jpg&quot; data-rawwidth=&quot;2993&quot; data-rawheight=&quot;2604&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;2993&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-d4816d3154a128ec8e6392cd24b70587_r.jpg&quot;&gt;&lt;figcaption&gt;玉娇龙进入流线与摄像机轨迹示意图,自绘&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;门厅右翼的楼板挑空也同时兼顾机位的运动和画面的信息量。在玉娇龙进入聚星楼一镜中,摄像机利用这个空井将玉娇龙进入、观察、上楼、落座的过程流畅地记录,并同时充分交代了环境的信息;而在打斗环节之后,镜头的视角又充分利用这里的高差将整个店的狼藉之状表达,所以此处局部挖空的设计操作本身并不针对建筑形式,而完全服务于拍摄。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-e11bb77c3c6140943f58dc839de78de6_b.jpg&quot; data-rawwidth=&quot;720&quot; data-rawheight=&quot;305&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;720&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-e11bb77c3c6140943f58dc839de78de6_r.jpg&quot;&gt;&lt;figcaption&gt;理解空井和高差对视线的处理的另一个例子是《妖猫传》青龙寺,聚星楼的视角是自上而下,青龙寺刚好相反&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;而两个空井之间所夹的连廊般的过道,通过上部界面的围合区分出入口与营业空间从而将门厅完型;在进入时的镜头中充分充当楼板剖面表明空间关系;而打斗之后由于其最薄弱而坍塌将两个空井联通交代出空间的纵深感来强调打斗状况惨烈,这些在电影中的意义显然要比它是否能真正用来营业重要得多的多。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-e931f1a92d1ed475da81aa4d1e5f7f8b_b.jpg&quot; data-rawwidth=&quot;600&quot; data-rawheight=&quot;250&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;600&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-e931f1a92d1ed475da81aa4d1e5f7f8b_r.jpg&quot;&gt;&lt;/figure&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-75aacb440693ee4c40fece2cb5e4069e_b.jpg&quot; data-rawwidth=&quot;600&quot; data-rawheight=&quot;250&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;600&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-75aacb440693ee4c40fece2cb5e4069e_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;于是,这个空间到底适不适合做酒馆并不重要——毕竟不是真营业,只要通过一些道具营造出酒馆的氛围就可以了。&lt;/p&gt;&lt;p&gt;这样我们就能理解,为什么透视图这样一个理性的名词,在建筑学中通常被叫做效果图,而在电影美术或舞台美术中更多地被称作“氛围图”——最终的呈现目标真的不一致。效果图更多关注的是空间本身,氛围图却通常并不是。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-b654d014a2961ede0aea89c7b885715e_b.jpg&quot; data-rawwidth=&quot;1200&quot; data-rawheight=&quot;500&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1200&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-b654d014a2961ede0aea89c7b885715e_r.jpg&quot;&gt;&lt;/figure&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-017b99be16833a79efbabe01dd78c76e_b.jpg&quot; data-rawwidth=&quot;461&quot; data-rawheight=&quot;766&quot; data-size=&quot;normal&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;461&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-017b99be16833a79efbabe01dd78c76e_r.jpg&quot;&gt;&lt;figcaption&gt;新版本的作品集没有电子版。。。用这个凑合看吧&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;再看《霸王别姬》中这条主街道的设计,仔细比较三个时期的气氛图可以发现很多有趣的变化,比如招牌的方式与内容、牌楼的拆除与纪念碑的新建、电线杆的多少及宣传喇叭的添加等等等等细节处理,这种时代变迁带来的变化通过气氛图很好地表达出来,也极有效地指导了布景的搭设。但在这个问题下我们可以更注意这个场景本身的反常性。&lt;/p&gt;&lt;p&gt;我们都知道老北京是棋盘状格局,比较重要的街道的方位都相当正,异型的道路也不是没有,但多发生于极小的胡同或是受限于中海南海北海什刹海前海后海这些水系而不得不为之。而这三张图所反映出的剧中街道的尺度和周边环境,并非水边或小胡同,但其形式却是放射状的,这种空间常见于巴黎、见于青岛、见于哈尔滨或天津,却唯独不应是北京的常态。&lt;/p&gt;&lt;p&gt;可是其对镜头的好处却也是实实在在的。这些场景需要的是同一镜头内出现更多的业态,通过业态自身前后的对比来表现时间的变迁,而非在一条街上表现空间的纵深感。放射状的布置,就像比比耶那家族于十八世纪在舞台美术中引入成角透视那样,使场景的空间逻辑发生了转变。镜头中同时能出现两条街,即扩大了单画面中的信息量,又顺带解决了方方正正的建筑布景搭建时街道纵深方向与边界交接处难以处理的问题。&lt;/p&gt;&lt;p&gt;而上述这些巧思不仅仅是镜头本身角度选择的功劳,美术设计中关于建筑空间的处理在这里同样功不可没。&lt;/p&gt;&lt;p&gt;只是需要换个视角去看待这里的空间设计。&lt;/p&gt;&lt;p&gt;总结一下怎么看杨老在这些作品中的建筑吧:&lt;/p&gt;&lt;p&gt;&lt;b&gt;杨老电影美术里的场景和空间,比大部分朋友圈爆款的网红建筑纯粹多了&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;——至少它们不遮遮掩掩,不用几千字的煽情文章和情怀包装,而是真刀真枪地直接处理镜头/观法问题。&lt;/b&gt;&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">
<img src="https://pic4.zhimg.com/50/v2-b5fb415570d3f978550ab99f7b1f05eb_200x112.jpg" data-rawwidth="1430" data-rawheight="594" data-caption="聚星楼,《卧虎藏龙》剧照" data-size="normal" data-watermark="watermark" data-original-src="v2-b5fb415570d3f978550ab99f7b1f05eb" data-watermark-src="v2-c86703c0c83334831d8208970dee3827" data-private-watermark-src="v2-5e7bfca656ec9bd2a626d295b80b1a6e" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic4.zhimg.com/50/v2-b5fb415570d3f978550ab99f7b1f05eb_r.jpg">
杨老可能并不是一个好的建筑师。就拿卧虎藏龙中出现的这个聚星楼来说,作为一个重点出现的对象,其建筑考据及建筑设计都是有硬伤的。从剧中可以看到其设定是一个徽派的传统建筑,从转角处进入,功能为酒馆。但当我们仔细阅读其平面时,会发现实际上它有一个…

<a href="/question/283743009/answer/435085441" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-07-06" target="_blank" href="/question/283743009/answer/435085441">编辑于 2018-07-06</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-25330446"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>16 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-panel">
<div data-type="monthly" data-zop-feedlist>
<div class="explore-feed feed-item" data-offset="1">
<h2><a class="question_link" href="/question/43527503/answer/412946030" target="_blank" data-id="9620323" data-za-element-name="Title">
你班主任说过最让你难忘的一句话是什么?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="105151042"
data-atoken="412946030"
data-collapsed="0"
data-created="1528469368"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/43527503/answer/412946030">
<meta itemprop="answer-id" content="105151042">
<meta itemprop="answer-url-token" content="412946030">
<a class="zg-anchor-hidden" name="answer-105151042"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>6320</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">6320</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$undertaker-78"
target="_blank" href="/people/undertaker-78"
>Undertaker</a></span><span title="音乐人" class="bio">
音乐人
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="6320">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">6320</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="9620323" data-action="/answer/content" data-author-name="Undertaker" data-entry-url="/question/43527503/answer/412946030">

<textarea hidden class="content">&lt;p&gt;初中班任。&lt;/p&gt;&lt;p&gt;一个到现在,我毕业了六年依然让我闻风丧胆的男人。&lt;/p&gt;&lt;p&gt;这是一个特立独行的男人。&lt;br&gt;这是一个我们初中有史以来带出最多中考状元的老师。&lt;br&gt;他管理着全校唯一的尖子班。&lt;br&gt;他偷偷办班,冒着被查的风险让全班同学来上课,但从来不要我们一分钱,只是为了让我们学的更多。&lt;br&gt;他打人,但只有他能管自己班的学生,校长都不敢管,谁管了就急。&lt;/p&gt;&lt;p&gt;以上为我们初中班任的介绍,下面正文。&lt;br&gt;我们这里小五初四制,初三的时候父亲突发心梗去世,心理崩溃,经常打架斗殴逃学,但班主任始终不怎么管,当时以为班主任已经放弃我了。直到初四的时候有一次,一个外班男生侮辱我的父亲。&lt;/p&gt;&lt;p&gt;当时我气的拿着铁锹追了他三条街,后来被我们班任知道,把我叫去办公室。&lt;/p&gt;&lt;p&gt;我们班任:解释解释吧。&lt;/p&gt;&lt;p&gt;我:他骂我爸。&lt;/p&gt;&lt;p&gt;然后长达三分钟的沉默,班主任抽完一根烟,走了出去。&lt;/p&gt;&lt;p&gt;大概三分钟后我听到了隔壁班班主任冲进来喊:“快下去拦一下你们老师。”&lt;/p&gt;&lt;p&gt;我和几个老师下楼,看到好多人拦着我们班任,我们班任拿着一节不知从哪扯下来的电缆,眼睛通红,从人群中越过几个人的肩膀指着那个被吓傻的学生咆哮:“你他妈给我过来,我今天就要打死你。”&lt;/p&gt;&lt;p&gt;拦着我们老师的人有副班任,年级主任,副校长,校长等等。&lt;/p&gt;&lt;p&gt;差点没拦住。&lt;/p&gt;&lt;p&gt;毕业六年,我经常会拿着好烟好酒去看他,心理压力依然会很大,这个男人的彪悍依然不减当年。&lt;/p&gt;&lt;p&gt;但我永远不会忘记我有一个好老师。&lt;/p&gt;&lt;p&gt;补一句,我父亲去世那天夜里后的第二天早上,除了邻居和近亲,第一个赶到的是睡眼惺忪匆忙换了衣服从家里淋着雨跑过来的班主任。&lt;/p&gt;&lt;p&gt;——分割线是这么打的不——&lt;/p&gt;&lt;p&gt;惊恐,几天没看知乎居然四千多赞,多谢你们点进这个回答,承蒙各位看官厚爱。&lt;/p&gt;&lt;p&gt;统一回复下各位疑惑的几个问题:&lt;/p&gt;&lt;p&gt;答主位于黑龙江,东北银,我一定要说东北不是像某手某音上那样!还是有素质的人居多的!&lt;/p&gt;&lt;p&gt;老师虽然对我们惩罚很可怕,让我至今回想起来依然心有余悸,但其实还是很亲民的233。当时经常和我们一起下课打篮球,而且上课非常幽默风趣,没事还把自习课改成体活让我们放松身心,有一次还因为这个怒刚了化学老师23333,以前上课的时候经常就有老生来看望他,毕业了以后也有很多同学去请他喝酒。&lt;/p&gt;&lt;p&gt;初中带出高考状元。手误,因为当时正邻自家弟高考,顺手打了个高考233,但我们这里确实也有很大一部分高考状元出自这个老师的初中班级。&lt;/p&gt;&lt;p&gt;老师和我爸的关系。说实话我的班任和我爸没有什么关系,只是家长与老师的关系,他赶到这里的时候第一句话是,孩子太小,怕承受不住这种刺激。&lt;/p&gt;&lt;p&gt;小五初四。哇我一直以为很多地方都是小五初四的,我们这里的初一大概相当于其他地方的六年级?大概是酱紫。&lt;/p&gt;&lt;p&gt;至于我是不是编的,反正我只能说我在知乎上能分享的都是我的真实经历,句句无戏言,各位看官要实在不信,那您就当我是写段子的,看个乐呵。&lt;/p&gt;&lt;p&gt;就这些吧大概是,看到评论下有朋友吵起来,不要吵不要吵,和和气气才好哈。&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">

初中班任。一个到现在,我毕业了六年依然让我闻风丧胆的男人。这是一个特立独行的男人。 这是一个我们初中有史以来带出最多中考状元的老师。 他管理着全校唯一的尖子班。 他偷偷办班,冒着被查的风险让全班同学来上课,但从来不要我们一分钱,只是为了让我…

<a href="/question/43527503/answer/412946030" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-06-08" target="_blank" href="/question/43527503/answer/412946030">编辑于 2018-07-03</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-9620323"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>293 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="2">
<h2><a class="question_link" href="/question/274271490/answer/412937055" target="_blank" data-id="23224771" data-za-element-name="Title">
辛苦科普八百年,一夜回到解放前是一种怎样的体验?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="105149436"
data-atoken="412937055"
data-collapsed="0"
data-created="1528468657"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="0"
data-zop
>
<link itemprop="url" href="/question/274271490/answer/412937055">
<meta itemprop="answer-id" content="105149436">
<meta itemprop="answer-url-token" content="412937055">
<a class="zg-anchor-hidden" name="answer-105149436"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>2392</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">2392</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">
<span class="name">知乎用户</span></span><span title="睾贵乡公,苟岂子,囧恩,鶸" class="bio">
睾贵乡公,苟岂子,囧恩,鶸
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="2392">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">2392</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="23224771" data-action="/answer/content" data-author-name="正恩公" data-entry-url="/question/274271490/answer/412937055">

<textarea hidden class="content">&lt;p&gt;&lt;b&gt;一更:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;评论区有些科盲的发炎真是辣眼睛!真是无知者无畏!还在那儿瞎扯什么2.8%和3.0%乳蛋白率差别不大,为国内乳企开脱!我现在就告诉你,为什么国标中的2.8%乳蛋白率是跌破底线般的大踏步后退。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-ee6bc555269821fdea4391512896c0c4_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;220&quot; data-rawheight=&quot;144&quot; class=&quot;content_image&quot; width=&quot;220&quot;&gt;&lt;/figure&gt;&lt;p&gt;根据美国农业部(USDA-AIPL)的一项统计分析,单就遗传育种角度而言,世界上分布最广的奶牛品种荷斯坦(黑白花)奶牛的乳蛋白率是3.06%,也就是说如果营养和管理跟得上,荷斯坦牛的乳蛋白率至少可以达到这个水平。这也就是全世界主要国家把乳蛋白国标制定为约3.0%的主要科学依据。&lt;/p&gt;&lt;p&gt;而实际生产中的乳蛋白率基本都会高于这个标准,是因为荷斯坦奶牛奶中的乳蛋白率是所有奶牛品种中最低的,其他品种的平均乳蛋白率,如爱尔夏牛(红白花)是3.18%,而娟珊牛更是高达3.59%。而无论是在国内还是在国外,不同品种奶牛混养是规模化奶牛场常采用的生产方式。所以,乳蛋白率达标3.0%对于普通欧美牛场毫无压力。而国内的三元、光明下属牛场也是荷斯坦牛/娟珊牛混养,这也是他们敢带头调高行业生产标准的信心之所在。&lt;/p&gt;&lt;p&gt;而乳蛋白率还有个有趣的地方,就是受遗传因素影响较大,而管理和营养的影响有限。遗传因素对于乳蛋白率的影响权重约占55%,但国内规模化牛场所使用的冻精、甚至胚胎主要进口自国外优质种畜,都是一样的爹妈遗传基因也不会差到哪去。所以遗传因素不能解释为什么国内奶牛乳蛋白率如此之低。&lt;/p&gt;&lt;p&gt;如果不是种不好,那么问题是不是出在营养上呢?有可能,但营养不能解释一切。因为就算是极端(极好或极差)的营养条件下,乳蛋白率的变化范围也就是在0.2%左右。而值得注意的是,我国创纪录的2.8%也就是比国际主流标准低了0.2%而已。所以不能说我国大多数奶牛都处于极度饥饿极度极度缺乏蛋白质摄入状态(用脚趾头想都不可能),真凶另有其人。&lt;/p&gt;&lt;p&gt;那就是管理,而且结合新国标中菌落总数从每毫升50万下调至200万还有新国标中刻意忽略的体细胞数标准,我们就可以解释为什么乳蛋白率上不去了。生乳标准中设置菌落总数指标主要是为了反映奶牛健康状况、牧场卫生状况和冷链运输质量控制情况。生产运输越规范,菌落数越低,美国标准中每毫升菌落数超过35万奶企就必须拒收并销毁超标原料奶。牛奶中细菌含量高了,首先需要更苛刻的条件才能杀死更多的细菌,比如提高杀菌温度和延长杀菌时间,但这会破坏牛奶中的营养成分。其次,储藏、运输中部分细菌会产生次级代谢产物,而这些产物中很多是有毒的,这种毒素比细菌更耐热,在牛奶加工中,即使高温杀菌也不能完全令其失去生物学活性。第三,菌落总数多会产生酶,酶能分解乳蛋白和乳脂,造成牛奶口感下降,并破坏营养价值。比如,出现苦味、沉淀物等。而且别忘了体细胞数反应的乳腺炎问题,患乳腺炎的奶牛所产的牛奶中体细胞数会急剧升高,而乳蛋白和乳脂含量严重下降。新国标中压根就没有体细胞数这项要求,这简直太可怕了。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-11866c3e233c0d7ebcb57026af4cc77b_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;228&quot; data-rawheight=&quot;221&quot; class=&quot;content_image&quot; width=&quot;228&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;b&gt;综上所述,导致新国标如此丧心病狂调低乳蛋白率和菌落总数标准的根本原因,在于国内该产业极度落后的管理和营养条件,国内的奶牛虽然基因不错,但平时吃得不好,居住条件也不卫生,抵抗力差,健康状况得不到保证,挤出的牛奶在储藏运输过程中又被细菌污染,最后到达消费者手中时的品质可想而知!这么低的蛋白质,那么多的细菌,消费者花钱却得不到应有的营养回报,还损害健康。所以说喝这种品质的国产牛奶,还不如喝白开水!&lt;/b&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-06b7aad4cc76078aa3f2093f3c432d7d_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;413&quot; data-rawheight=&quot;310&quot; class=&quot;content_image&quot; width=&quot;413&quot;&gt;&lt;/figure&gt;&lt;p&gt;&lt;b&gt;完!&lt;/b&gt;&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;b&gt;今年是2018年,距离三聚氰胺事件已经过去整整十年了。&lt;/b&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-79c2ad072aa9cdc9be94ab524b7335f8_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;400&quot; data-rawheight=&quot;400&quot; class=&quot;content_image&quot; width=&quot;400&quot;&gt;&lt;/figure&gt;&lt;p&gt;十年时间,足够让一个少年成长为青年,也足够让一个中年人步入老年。那么这十年间,我国乳业都发生了哪些变化呢?&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-97917164230be54994f55ae73bb6b300_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;580&quot; data-rawheight=&quot;557&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;580&quot; data-original=&quot;https://pic1.zhimg.com/50/v2-97917164230be54994f55ae73bb6b300_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;变化还是有的,而且来的比预想中要快得多。早在2010年4月,由“七十多位不同领域的专家,11个部委机构”联合起草的中国乳业新国标就粉墨登场了,它所带来的变化是天翻地覆的,虽说不至于一夜回到解放前,但倒退几十年还是绰绰有余的。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-a504504f23b02b4dfd7aa9887ff559fd_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;700&quot; data-rawheight=&quot;649&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;700&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-a504504f23b02b4dfd7aa9887ff559fd_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;究竟都改了啥呢?&lt;/p&gt;&lt;p&gt;&lt;b&gt;单纯从数值上看,新国标甚至连25年前都不如了,乳蛋白含量从1986年的2.95%,降到了2.8%,菌落总数则从2003年的每毫升50万下调至200万,均为历史新低。在丹麦,在新西兰,在几乎所有的乳业大国,生乳蛋白质含量标准都至少在3.0以上,而菌落总数,美国、欧盟是不超过10万,丹麦是3万,更是严至中国的数十分之一。&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;这是全球最差的牛奶标准,一项令人尴尬的世界之最。&lt;/b&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-ae7a99d0db966c61da1f66a88160cc02_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;440&quot; data-rawheight=&quot;329&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;440&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-ae7a99d0db966c61da1f66a88160cc02_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;那么为什么要推翻1986年以来实施的旧标准,制定了这么一个低到令人发指的新国标呢?卫生部修改牛奶标准的专家组成员内蒙古奶协秘书长那达木德是这么解释的,他认为中国奶业的现状要取决于国情。&lt;/p&gt;&lt;blockquote&gt;“我们国家72%牛奶都是散户饲养。北方绝大部分地区生产的牛奶,蛋白质含量达不到当初的2.95。这样会出现什么问题?乳品企业按照2.95国标来执行的话,这样的牛奶都要倒掉!”同样,牛奶中的细菌总数上调,也是考虑到农民散养奶牛的环境现状:“养殖环境比较差,乳房炎的发病率也高。在这样情况下,定格200万,就能保证奶农生产合格的奶。”&lt;/blockquote&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-2797f9ba9372c6e8925d9260f7f6cc2f_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;225&quot; data-rawheight=&quot;225&quot; class=&quot;content_image&quot; width=&quot;225&quot;&gt;&lt;/figure&gt;&lt;p&gt;辽宁奶协秘书长更是斩钉截铁的说,他们发现40%的奶户原奶质量不能稳定在2.95%之上。农业部官员亦表示,“没有哪个企业敢说它没有收过2.95%以下的牛奶。”&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic1.zhimg.com/50/v2-f5da8c2ba29374ae1ac03d03ab8fed43_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;225&quot; data-rawheight=&quot;225&quot; class=&quot;content_image&quot; width=&quot;225&quot;&gt;&lt;/figure&gt;&lt;p&gt;理由充分,无法辩驳。&lt;/p&gt;&lt;p&gt;还好,部分奶企和地方奶协还是要脸的。&lt;/p&gt;&lt;p&gt;于是在2016年4月,中国奶业发生了一件堪比清末&lt;b&gt;东南互保&lt;/b&gt;的大事。&lt;/p&gt;&lt;p&gt;2016年4月21日,中国农垦乳业联盟2016年主席联席会暨农垦乳业发展峰会在哈尔滨召开,光明乳业、三元食品、完达山乳业等联盟17家成员单位主要负责人到场出席,并推出了《&lt;b&gt;中国农垦生鲜乳生产和质量标准&lt;/b&gt;》。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-14b5d41dd67ef0bc85e08990f7873dfd_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;225&quot; data-rawheight=&quot;224&quot; class=&quot;content_image&quot; width=&quot;225&quot;&gt;&lt;/figure&gt;&lt;p&gt;与现行国标相比,这个中国奶业的东南互保中有两个主要亮点:&lt;/p&gt;&lt;p&gt;首先,&lt;b&gt;将菌落总数从每毫升200万以下(生鲜乳国标)调整到了每毫升10万以下,与代表世界先进水平的欧盟和美国的标准一致。&lt;/b&gt;同时,将我国现行标准中没有的、反映奶牛乳房健康水平的体细胞数首次纳入到了《中国农垦生鲜乳生产和质量标准》中,并且也是按照国际最高标准——欧盟的标准来制定的,即每毫升40万个以下,该标准要高于美国每毫升75万个以下的国家标准。其次,&lt;b&gt;将乳蛋白率提高到3.0%,这个指标已经达到了国际生鲜乳的优质标准,&lt;/b&gt;比2010国家生乳标准的2.8%提高了0.2个百分点。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-ddd99983acd3c9e1b450cdae62743fda_b.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1280&quot; data-rawheight=&quot;853&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1280&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-ddd99983acd3c9e1b450cdae62743fda_r.jpg&quot;&gt;&lt;figcaption&gt;中国农垦乳业联盟企业&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;这是件轰动中国奶业的大事,说明地方奶业的有识之士终于意识到脸皮的重要性开始用实际行动倒逼中央了。有了好奶源才能生产出好的奶制品,这对重铸中国乳业消费信心将会起到很大帮助。然后呢?&lt;/p&gt;&lt;p&gt;就没有然后了。两年过去了,任风雨来袭,我自岿然不动。那部辣眼睛的中国乳业国标,依旧大大咧咧地摆在台面上。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic2.zhimg.com/50/v2-286a574302efa66c2b1898a0013a2e6f_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;418&quot; data-rawheight=&quot;312&quot; class=&quot;content_image&quot; width=&quot;418&quot;&gt;&lt;/figure&gt;&lt;p&gt;而目前遵循《中国农垦生鲜乳生产和质量标准》生产的国产生鲜乳,只占全国原料奶总产量的10%左右。&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic3.zhimg.com/50/v2-72b23def5aaff69611ed51bc98449ed7_b.jpg&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;580&quot; data-rawheight=&quot;580&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;580&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-72b23def5aaff69611ed51bc98449ed7_r.jpg&quot;&gt;&lt;/figure&gt;&lt;p&gt;完。&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">
<img src="https://pic2.zhimg.com/50/v2-ee6bc555269821fdea4391512896c0c4_200x112.jpg" data-caption="" data-size="normal" data-rawwidth="220" data-rawheight="144" data-watermark="" data-original-src="" data-watermark-src="" data-private-watermark-src="" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic2.zhimg.com/50/v2-ee6bc555269821fdea4391512896c0c4_r.jpg">
<b>一更:</b>评论区有些科盲的发炎真是辣眼睛!真是无知者无畏!还在那儿瞎扯什么2.8%和3.0%乳蛋白率差别不大,为国内乳企开脱!我现在就告诉你,为什么国标中的2.8%乳蛋白率是跌破底线般的大踏步后退。根据美国农业部(USDA-AIPL)的一项统计分析,单就遗传育种…

<a href="/question/274271490/answer/412937055" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-06-08" target="_blank" href="/question/274271490/answer/412937055">编辑于 2018-06-23</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-23224771"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>372 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="0">
<meta name="disableCopyAvatar" content="https://pic4.zhimg.com/da8e974dc_m.jpg">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-6" target="_blank" class="meta-item copyright">禁止转载</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="3">
<h2><a class="question_link" href="/question/276488630/answer/412914271" target="_blank" data-id="23717508" data-za-element-name="Title">
有什么知识是你学医之后才知道的?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="105145333"
data-atoken="412914271"
data-collapsed="0"
data-created="1528466796"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/276488630/answer/412914271">
<meta itemprop="answer-id" content="105145333">
<meta itemprop="answer-url-token" content="412914271">
<a class="zg-anchor-hidden" name="answer-105145333"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>2297</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">2297</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">
<span class="name">知乎用户</span></span><span title="我的微信公众号:听萌医生说" class="bio">
我的微信公众号:听萌医生说
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="2297">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">2297</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="23717508" data-action="/answer/content" data-author-name="来自星星的萌医生" data-entry-url="/question/276488630/answer/412914271">

<textarea hidden class="content">喝红酒可以软化血管。&lt;br&gt;&lt;br&gt;不知道从什么时候起,这句话开始广泛的流行于中国的酒桌上,也成为了某些人可以肆无忌惮的喝酒的保护伞。每当我告诫自己的患者要戒烟戒酒的时候,总会有人拿出这句话来反驳我,或者,作为他还想继续喝酒的心理慰藉。&lt;figure&gt;&lt;img data-rawwidth=&quot;500&quot; data-rawheight=&quot;374&quot; src=&quot;https://pic3.zhimg.com/50/v2-18b18787d7adf06721ae7dbb3aba6e64_b.jpg&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;500&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-18b18787d7adf06721ae7dbb3aba6e64_r.jpg&quot;&gt;&lt;/figure&gt;那么,这句话到底有没有科学依据呢?答案是有的。在红酒中(包括葡萄酒),有一种叫做白藜芦醇的物质,白藜芦醇可以升高人体内的高密度脂蛋白的浓度,而高密度脂蛋白是一种有益物质,具有降低血脂、稳定斑块,从而达到预防冠心病的作用,这也就是“喝红酒可以软化血管”这句话的由来。&lt;br&gt;&lt;br&gt;然而,我们都知道,在知乎有一句话叫做,“脱离剂量谈毒性,都是耍流氓”;那么,举一反三而论,“脱离剂量谈药性”,自然也是一种流氓行径了。&lt;br&gt;&lt;br&gt;事实也的确如此,每一种药物,或者说,具有药理作用的物质,要在人体内发挥作用,就必须达到一定的浓度。而白藜芦醇要想在人体内发挥作用,每天的摄入量就必须在2克以上(这是最低有效剂量)。那么,要摄入这么多白藜芦醇,我们需要喝多少红酒呢?&lt;br&gt;&lt;br&gt;通常来说,红酒中白藜芦醇的含量并不高,以12度的红酒为例,其含量一般在1.5克到2克之间,折算一下,我们每天必须至少喝1升红酒才能达到软化血管要求。&lt;figure&gt;&lt;img data-rawwidth=&quot;194&quot; data-rawheight=&quot;194&quot; src=&quot;https://pic1.zhimg.com/50/v2-4661f7b27e0441de01fbeb753fdd6a3e_b.jpg&quot; class=&quot;content_image&quot; width=&quot;194&quot;&gt;&lt;/figure&gt;然而,问题又来了,世卫组织建议,正常的成年男性,每天的纯酒精摄入量应当控制在1个标准左右(18.75毫升),最高也不可以超过3个标准(56.25毫升)。根据这个标准,我们还是按照12度的红酒来换算一下,就会得出:出于健康考虑,我们每天饮用12度的红酒最好控制在156.25毫升左右,最高也不可以超过468.75毫升。&lt;br&gt;&lt;br&gt;两相一对比,不难发现,要想达到所谓的通过“喝红酒软化血管”的目的,就必须大量饮酒,从而牺牲掉食管、胃肠道、肝脏,哦,还有心脏(酒精性心脏病)。。&lt;figure&gt;&lt;img data-rawwidth=&quot;459&quot; data-rawheight=&quot;640&quot; src=&quot;https://pic1.zhimg.com/50/v2-068587deaf1efe5970eb38cd65757b17_b.jpg&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;459&quot; data-original=&quot;https://pic1.zhimg.com/50/v2-068587deaf1efe5970eb38cd65757b17_r.jpg&quot;&gt;&lt;/figure&gt;等等,不是说好了喝红酒是为了保护心脏的吗?!!&lt;br&gt;&lt;br&gt;吓得我赶紧喝杯酸奶压压惊!!&lt;br&gt;&lt;br&gt;&lt;br&gt;我的微信公众号:听萌医生说&lt;br&gt;&lt;br&gt;做认真的医学科普,讲有趣的医学故事&lt;br&gt;&lt;br&gt;你愿意,听我说吗?</textarea>


<div class="zh-summary summary clearfix">
<img data-rawwidth="500" data-rawheight="374" src="https://pic3.zhimg.com/50/v2-18b18787d7adf06721ae7dbb3aba6e64_200x112.jpg" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic3.zhimg.com/50/v2-18b18787d7adf06721ae7dbb3aba6e64_r.jpg">
喝红酒可以软化血管。 不知道从什么时候起,这句话开始广泛的流行于中国的酒桌上,也成为了某些人可以肆无忌惮的喝酒的保护伞。每当我告诫自己的患者要戒烟戒酒的时候,总会有人拿出这句话来反驳我,或者,作为他还想继续喝酒的心理慰藉。那么,这句话到底…

<a href="/question/276488630/answer/412914271" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-06-08" target="_blank" href="/question/276488630/answer/412914271">编辑于 2018-06-08</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-23717508"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>115 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="4">
<h2><a class="question_link" href="/question/272200344/answer/413110854" target="_blank" data-id="22763898" data-za-element-name="Title">
二代团是否有崛起的可能?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="105181087"
data-atoken="413110854"
data-collapsed="0"
data-created="1528500839"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="0"
data-zop
>
<link itemprop="url" href="/question/272200344/answer/413110854">
<meta itemprop="answer-id" content="105181087">
<meta itemprop="answer-url-token" content="413110854">
<a class="zg-anchor-hidden" name="answer-105181087"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>405</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">405</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">

<a class="author-link"
data-hovercard="p$t$chenlu-chen"
target="_blank" href="/people/chenlu-chen"
>Lulululululu</a></span><span title="薛定谔的狗" class="bio">
薛定谔的狗
</span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="405">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">405</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="22763898" data-action="/answer/content" data-author-name="Lulululululu" data-entry-url="/question/272200344/answer/413110854">

<textarea hidden class="content">我说真的,前面那些回答看的我好丧。&lt;br&gt;那说句题外话吧。&lt;br&gt;我其实也不知道怎么样算得上崛起。&lt;br&gt;你或许觉得现在二代团,都在走下坡路了。但你认为粉丝是在图些什么呢?&lt;br&gt;钱,他们有,top级别。&lt;br&gt;地位,他们有,top级别。&lt;br&gt;知名度,他们有,top级别。&lt;br&gt;各类资源,他们有,top级别。&lt;br&gt;别的小孩在舞台上拼死拼活赚镜头,他们能全程控场一个人扛一台节目。&lt;br&gt;层出不穷的新团依旧在本土屁大点地方蹦跶的时候,他们上百场supershow在全世界开的风生水起。&lt;br&gt;十周年刚过要到了自家的厂牌,可以自己选歌制作喜欢的专辑,可以自由追求自己的音乐理想。&lt;br&gt;他们近几年喜欢买房买车,想着在既suju宿舍后打造一个suju小区。&lt;br&gt;长情的死忠会熬夜爆肝切瓜买砖,新鲜的路人会看综艺听歌看演唱会。&lt;br&gt;无论何时何地人人谈起他们依旧称得上一句传奇,他们每时每刻能创造新的历史。&lt;br&gt;从05年出道,经历过车祸anti退团入伍洗粉,从弟弟们哭着送哥哥们入伍,到现在哥哥们开了台节目只等弟弟们回家。&lt;br&gt;年轻时候他们一起开疆拓土欣赏过顶峰的万千繁华,也携手抵住了这背后的人生百态。多年后依旧活的那么熠熠闪光,私底下的时候可以四处串门喝酒一起组成观光团拍游客照。&lt;br&gt;我真的觉得这样很好了,他们一路走来,太艰难了,在经历风风雨雨后,只希望他们能健康开心地过自己想过的生活。&lt;br&gt;&lt;br&gt;至于崛不崛起,Only time will tell。&lt;br&gt;&lt;figure&gt;&lt;img data-rawheight=&quot;254&quot; src=&quot;https://pic4.zhimg.com/50/v2-44151358f2633723076be899b63bfa40_b.jpg&quot; data-rawwidth=&quot;500&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;500&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-44151358f2633723076be899b63bfa40_r.jpg&quot;&gt;&lt;/figure&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;figure&gt;&lt;img data-rawwidth=&quot;500&quot; data-rawheight=&quot;239&quot; src=&quot;https://pic2.zhimg.com/50/v2-caa58ca62ace50a77ea72dcb3291c72c_b.jpg&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;500&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-caa58ca62ace50a77ea72dcb3291c72c_r.jpg&quot;&gt;&lt;/figure&gt;&lt;br&gt;&lt;figure&gt;&lt;img data-rawwidth=&quot;488&quot; data-rawheight=&quot;229&quot; src=&quot;https://pic2.zhimg.com/50/v2-663e3bb36429fa70c84cdf4c1b19e53c_b.jpg&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;488&quot; data-original=&quot;https://pic2.zhimg.com/50/v2-663e3bb36429fa70c84cdf4c1b19e53c_r.jpg&quot;&gt;&lt;/figure&gt;&lt;br&gt;&lt;figure&gt;&lt;img data-rawheight=&quot;400&quot; src=&quot;https://pic3.zhimg.com/50/v2-201d4b568ebb623c7c232b4db7a21c03_b.jpg&quot; data-rawwidth=&quot;435&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;435&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-201d4b568ebb623c7c232b4db7a21c03_r.jpg&quot;&gt;&lt;/figure&gt;&lt;br&gt;&lt;br&gt;&lt;figure&gt;&lt;img data-rawheight=&quot;540&quot; src=&quot;https://pic4.zhimg.com/50/v2-7eaf4d4db330c4489ac2c8859a04f5c4_b.jpg&quot; data-rawwidth=&quot;540&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;540&quot; data-original=&quot;https://pic4.zhimg.com/50/v2-7eaf4d4db330c4489ac2c8859a04f5c4_r.jpg&quot;&gt;&lt;/figure&gt;&lt;br&gt;&lt;br&gt;&lt;figure&gt;&lt;img data-rawheight=&quot;1597&quot; src=&quot;https://pic3.zhimg.com/50/v2-dd7d7a18c0d3a8debc434d77e1b70927_b.jpg&quot; data-rawwidth=&quot;720&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;720&quot; data-original=&quot;https://pic3.zhimg.com/50/v2-dd7d7a18c0d3a8debc434d77e1b70927_r.jpg&quot;&gt;&lt;/figure&gt;</textarea>


<div class="zh-summary summary clearfix">
<img data-rawheight="254" src="https://pic4.zhimg.com/50/v2-44151358f2633723076be899b63bfa40_200x112.jpg" data-rawwidth="500" class="origin_image inline-img zh-lightbox-thumb" data-original="https://pic4.zhimg.com/50/v2-44151358f2633723076be899b63bfa40_r.jpg">
我说真的,前面那些回答看的我好丧。 那说句题外话吧。 我其实也不知道怎么样算得上崛起。 你或许觉得现在二代团,都在走下坡路了。但你认为粉丝是在图些什么呢? 钱,他们有,top级别。 地位,他们有,top级别。 知名度,他们有,top级别。 各类资源,他们…

<a href="/question/272200344/answer/413110854" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-06-09" target="_blank" href="/question/272200344/answer/413110854">编辑于 2018-06-16</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-22763898"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>57 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="0">
<meta name="disableCopyAvatar" content="https://pic1.zhimg.com/v2-9584b2c8196d73ce6773d174b69fa088_s.jpg">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-6" target="_blank" class="meta-item copyright">禁止转载</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div><div class="explore-feed feed-item" data-offset="5">
<h2><a class="question_link" href="/question/275714864/answer/413013731" target="_blank" data-id="23545634" data-za-element-name="Title">
有没有被游戏扭曲了形象的兵器?
</a></h2>
<div tabindex="-1" class="zm-item-answer "
itemscope itemtype="http://schema.org/Answer"
data-aid="105163407"
data-atoken="413013731"
data-collapsed="0"
data-created="1528474732"
data-deleted="0"
data-isowner="0"
data-helpful="True"
data-copyable="1"
data-zop
>
<link itemprop="url" href="/question/275714864/answer/413013731">
<meta itemprop="answer-id" content="105163407">
<meta itemprop="answer-url-token" content="413013731">
<a class="zg-anchor-hidden" name="answer-105163407"></a>

<div class="zm-item-vote">
<a class="zm-item-vote-count js-expand js-vote-count" href="javascript:;" data-bind-votecount>542</a>
</div>

<div class="zm-votebar">
<button class="up ">
<i class="icon vote-arrow"></i>
<span class="count">542</span>
<span class="label sr-only">赞同</span>
</button>
<button class="down ">
<i class="icon vote-arrow"></i>
<span class="label sr-only">反对</span>
</button>
</div>


<div class="answer-head">

<div class="zm-item-answer-author-info">

<span class="summary-wrapper">
<span class="author-link-line">
<span class="name">知乎用户</span></span>
</span>
</div>

<div class="zm-item-vote-info" data-votecount="542">



<span class="voters text"><a href="#" class="more text"><span class="js-voteCount">542</span>&nbsp;人赞同</a></span>


</div>
</div>
<div class="zm-item-rich-text expandable js-collapse-body" data-resourceid="23545634" data-action="/answer/content" data-author-name="李简" data-entry-url="/question/275714864/answer/413013731">

<textarea hidden class="content">&lt;p&gt;现代军事游戏中的闪光/震撼弹。看到另一个回答说了烟雾弹,就简单说一下闪光弹好了。的确现在游戏中的闪光弹形象基本上就是M84的各种魔改:&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;https://pic4.zhimg.com/50/v2-2631586a45ffb2d449dfdd24cfa562be_b.jpg&quot; data-rawwidth=&quot;196&quot; data-rawheight=&quot;196&quot; data-caption=&quot;&quot; data-size=&quot;normal&quot; class=&quot;content_image&quot; width=&quot;196&quot;&gt;&lt;/figure&gt;&lt;p&gt;一根两端六棱柱形的侧开圆洞的近似圆柱体,拉开引信、扔出去,清脆的金属落地声后紧接着就是一声巨响和白色闪光,小范围内不幸直视它爆炸的人眼前变得一片惨白,耳边嗡鸣不已,在数秒后视力和听力才慢慢恢复正常……这就是现代FPS游戏给大部分玩家带来的闪光弹的形象。&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;而真实的M84 stun grenade(震撼手榴弹)是什么样的呢?根据维基的数据,&lt;b&gt;5尺内(1.5米半径)爆炸声响170到180分贝,闪光的强度为600至800万坎德拉&lt;/b&gt;。&lt;/p&gt;&lt;p&gt;这是什么概念?&lt;/p&gt;&lt;p&gt;普通的步枪射击时,枪声大约在150至160分贝(不一定准确),也就是说震撼弹爆炸的声响大约是步枪枪声的几十上百倍。而直视太阳时,肉眼接收到的光照强度约为10至20万坎德拉——即直视震撼弹爆炸相当于瞬间看到了几十个太阳。显然这已经不是几秒就能恢复正常的视听损害了。&lt;/p&gt;&lt;p&gt;而且,由于震撼弹巨大的声响,爆炸声压对人耳的冲击足以影响内耳的平衡系统(人体需要依靠内耳的一些器官来维持自己的平衡),也就是说被震撼弹影响的人很可能在一段时间内不仅失明、失聪,而且还会像原地转了很多圈一样失去对平衡的掌握,连站都站不稳。很多FPS游戏中老手被闪之后按记忆对房间入口盲射、或者撤退回记忆中的掩体,也多半别想做到了。&lt;/p&gt;</textarea>


<div class="zh-summary summary clearfix">

现代军事游戏中的闪光/震撼弹。看到另一个回答说了烟雾弹,就简单说一下闪光弹好了。的确现在游戏中的闪光弹形象基本上就是M84的各种魔改:一根两端六棱柱形的侧开圆洞的近似圆柱体,拉开引信、扔出去,清脆的金属落地声后紧接着就是一声巨响和白色闪光,小…

<a href="/question/275714864/answer/413013731" class="toggle-expand">显示全部</a>

</div>



<p class="visible-expanded"><a itemprop="url" class="answer-date-link meta-item" data-tooltip="s$t$发布于 2018-06-09" target="_blank" href="/question/275714864/answer/413013731">编辑于 2018-06-10</a></p>

</div>
<div class="zm-item-meta answer-actions clearfix js-contentActions">
<div class="zm-meta-panel">

<a data-follow="q:link" class="follow-link zg-follow meta-item" href="javascript:;" id="sfb-23545634"><i class="z-icon-follow"></i>关注问题</a>

<a href="#" name="addcomment" class="meta-item toggle-comment js-toggleCommentBox">
<i class="z-icon-comment"></i>66 条评论</a>


<a href="#" class="meta-item zu-autohide js-thank" data-thanked="false"><i class="z-icon-thank"></i>感谢</a>



<a href="#" class="meta-item zu-autohide js-share"><i class="z-icon-share"></i>分享</a>

<a href="#" class="meta-item zu-autohide js-collect"><i class="z-icon-collect"></i>收藏</a>





<span class="zg-bull zu-autohide">&bull;</span>

<a href="#" class="meta-item zu-autohide js-noHelp">没有帮助</a>

<span class="zg-bull zu-autohide">&bull;</span>
<a href="#" class="meta-item zu-autohide js-report">举报</a>




<meta name="copyrightStatus" content="1">
<meta name="disableCopyAvatar" content="">

<span class="zg-bull">&bull;</span>

<a href="/terms#sec-licence-1" target="_blank" class="meta-item copyright">
作者保留权利
</a>


<button class="meta-item item-collapse js-collapse">
<i class="z-icon-fold"></i>收起
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>


</div>
</div>


<div class="zu-main-sidebar" data-za-module="RightSideBar">

<!-- <div class="zm-side-section">
<div class="zm-side-section-inner">
<div class="SignFlow SignFlow--bordered" id="SidebarSignFlow">
<div class="SignFlow-panel">
<div class="title register">
<h1>加入知乎</h1>
<h2>与世界分享你的知识、经验和见解</h2>
</div>
<div class="view register SignupForm" data-za-module="SignUpForm">
<form action="/register/email" method="POST">
<div class="input-wrapper">
<input type="text" name="fullname" aria-label="姓名" data-placeholder="姓名" required>
</div>
<div class="input-wrapper">

<input type="text" name="phone_num" class="account" aria-label="手机号" data-placeholder="手机号" required>

</div>
<div class="input-wrapper toggle-password">
<input type="password" hidden> 
<input type="password" name="password" aria-label="密码" data-placeholder="密码(不少于 8 位)" required>
<span class="z-ico-show-password"></span>
</div>
<div class="input-wrapper captcha-module" data-type="en" >
<input id="captcha" name="captcha" placeholder="验证码" required data-rule-required="true" data-msg-required="请填写验证码">
<div class="captcha-container">

<img class="js-refreshCaptcha captcha" width="120" height="30" data-tooltip="s$t$看不清楚?换一张"  alt="验证码">
</div>
</div>
<div class="actions">

<input type="submit" value="注册" class="submit zg-btn-blue">

</div>
<div class="sns clearfix">
<span>已有帐号?<a href="#" class="switch-to-login">登录</a></span>
</div>
</form>
</div>
</div>
<div class="SignFlow-panel" hidden>
<div class="LoginForm">
<div class="title login">
<h1>登录知乎</h1>
<h2>与世界分享你的知识、经验和见解</h2>
</div>
<div class="view login" data-za-module="SignInForm">
<form method="POST">
<div class="input-wrapper">
<input type="text" name="account" class="account" aria-label="手机号或邮箱" placeholder="手机号或邮箱" required>
</div>
<div class="input-wrapper toggle-password">
<input type="password" name="password" aria-label="密码" placeholder="密码" required>
<span class="z-ico-show-password"></span>
</div>
<div class="input-wrapper captcha-module" data-type="en" >
<input id="captcha" name="captcha" placeholder="验证码" required data-rule-required="true" data-msg-required="请填写验证码">
<div class="captcha-container">

<img class="js-refreshCaptcha captcha" width="120" height="30" data-tooltip="s$t$看不清楚?换一张"  alt="验证码">
</div>
</div>
<div class="actions">

<input type="submit" value="登录" class="submit zg-btn-blue">

</div>
<div class="sns clearfix">
<label class="remember-me"><input type="checkbox" name="remember_me" checked value="true">记住我</label>
<span class="middot">·</span>
<button class="unable-login" type="button">无法登录?</button>
<button type="button" class="js-show-sns-buttons is-visible">社交帐号登录</button>
<div class="sns-buttons">
<button type="button" class="wechat"><span class="ico sprite-global-icon-wechat-gray"></span>微信</button>
<button type="button" class="weibo"><span class="ico sprite-global-icon-weibo-gray"></span>微博</button>
<button type="button" class="qq"><span class="ico sprite-global-icon-qq-gray"></span>QQ</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div> -->
<div class="zm-side-section">
<div class="DownloadApp">
<button class="DownloadApp-button">
<span class="sprite-global-icon-qrcode"></span>
下载知乎 App
</button>
</div>
</div>


<div class="shameimaru-placeholder" data-loc="explore_up" data-params='{}'></div>

<div class="zm-side-section explore-side-section explore-side-section-roundtable">
<div class="zm-side-section-inner">
<div class="section-title">
<a href="/roundtable" class="zg-link-gray zg-right" data-za-c="view_roundtable" data-za-a="visit_roundtable_home" data-za-l="explore_sidebar_trending_roundtable_more">更多圆桌 &raquo;</a>
<h3>热门圆桌</h3>
</div>
<ul class="list hot-roundtables">

<li class="clearfix">
<a target="_blank" class="avatar-link" href="/roundtable/fenkai"><img src="https://pic3.zhimg.com/v2-25b83f019cc4e44d0ad1858d6ef2338c_m.jpg" alt="Path" class="avatar 40" /></a>
<div class="content">

<a href="/roundtable/fenkai" target="_blank" data-hovercard="r$t$fenkai">「分开」这件小事</a>
<div class="meta">
<span>4514 人关注</span>
<span class="zg-bull">&bull;</span>
<span>34 个问题</span>
</div>
</div>
</li>

<li class="clearfix">
<a target="_blank" class="avatar-link" href="/roundtable/qiaoshengyiyu"><img src="https://pic2.zhimg.com/v2-77ee1b2a446ff3427e82a4cfa93b3d0d_m.jpg" alt="Path" class="avatar 40" /></a>
<div class="content">

<a href="/roundtable/qiaoshengyiyu" target="_blank" data-hovercard="r$t$qiaoshengyiyu">悄声抑郁</a>
<div class="meta">
<span>9484 人关注</span>
<span class="zg-bull">&bull;</span>
<span>23 个问题</span>
</div>
</div>
</li>

</ul>
</div>
</div>
<div class="zm-side-section explore-side-section">
<div class="zm-side-section-inner">
<div class="section-title">

<a href="/topics" class="zg-link-gray zg-right">更多话题 &raquo;</a>

<h3>热门话题</h3>
</div>
<ul class="list hot-topics">

<li class="clearfix">
<a target="_blank" class="avatar-link" href="/topic/19588303" data-hovercard="t$b$19588303"><img src="https://pic4.zhimg.com/ebec2d3ac_m.jpg" alt="节气" class="avatar 40" /></a>
<div class="content">
<a href="/topic/19588303" target="_blank" data-hovercard="t$b$19588303">节气</a>
<div class="meta">
<span>3720 人关注</span>

</div>
</div>
<div class="bottom">

</div>
</li>

<li class="clearfix">
<a target="_blank" class="avatar-link" href="/topic/20076653" data-hovercard="t$b$20076653"><img src="https://pic4.zhimg.com/v2-c33e30071dc81061523af41056c2aa8e_m.jpg" alt="2018 年俄罗斯世界杯" class="avatar 40" /></a>
<div class="content">
<a href="/topic/20076653" target="_blank" data-hovercard="t$b$20076653">2018 年俄罗斯世界杯</a>
<div class="meta">
<span>158755 人关注</span>

</div>
</div>
<div class="bottom">

</div>
</li>

<li class="clearfix">
<a target="_blank" class="avatar-link" href="/topic/19605143" data-hovercard="t$b$19605143"><img src="https://pic3.zhimg.com/f42569491_m.jpg" alt="端午节" class="avatar 40" /></a>
<div class="content">
<a href="/topic/19605143" target="_blank" data-hovercard="t$b$19605143">端午节</a>
<div class="meta">
<span>6862 人关注</span>

</div>
</div>
<div class="bottom">

</div>
</li>

</ul>
</div>
</div>
<div class="zm-side-section explore-side-section">
<div class="zm-side-section-inner">
<div class="section-title">
<a href="javascript:;" id="js-hot-fav-switch" class="zg-link-gray zg-right" data-za-c="collection" data-za-a="click_trending_collections_change" data-za-l="explore_sidebar_trending_collections_collection_name">换一换</a>
<h3>热门收藏</h3>
</div>
<ul class="list hot-favlists">
<li>
<div class="content">
<a href="/collection/89138914" target="_blank">精彩回复</a>
<div class="meta">
<span>198 人关注</span>
<span class="zg-bull">&bull;</span>
<span>622 条内容</span>
</div>
</div>
</li>

<li>
<div class="content">
<a href="/collection/31887174" target="_blank">破千赞控</a>
<div class="meta">
<span>144 人关注</span>
<span class="zg-bull">&bull;</span>
<span>675 条内容</span>
</div>
</div>
</li>

<li>
<div class="content">
<a href="/collection/20322317" target="_blank">日常生活</a>
<div class="meta">
<span>7108 人关注</span>
<span class="zg-bull">&bull;</span>
<span>1307 条内容</span>
</div>
</div>
</li>

<li>
<div class="content">
<a href="/collection/118348887" target="_blank">管中窥豹</a>
<div class="meta">
<span>235 人关注</span>
<span class="zg-bull">&bull;</span>
<span>704 条内容</span>
</div>
</div>
</li>

<li>
<div class="content">
<a href="/collection/29678118" target="_blank">邪的骚的</a>
<div class="meta">
<span>121 人关注</span>
<span class="zg-bull">&bull;</span>
<span>78 条内容</span>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="shameimaru-placeholder" data-loc="explore_down" data-params='{}'></div>
<div id="zh-footer" class="zh-footer">
<div class="content zg-wrap clearfix">
<ul>

<li><a href="https://liukanshan.zhihu.com" target="_blank">刘看山</a></li>

<li><a href="/app" target="_blank">移动应用</a></li>
<li><a href="/careers">加入知乎</a></li>
<li><a href="/terms" target="_blank">知乎协议</a></li>
<li><a href="/jubao" target="_blank">举报投诉</a></li>
<li><a href="/terms/privacy" target="_blank">隐私政策</a></li>
<li><a href="/contact">联系我们</a></li>

</ul>

<span class="copy">&copy; 2018 知乎</span>

</div>
</div>


</div>


</div>



<script type="text/json" class="json-inline" data-name="guiders2">{}</script>
<script type="text/template" class="unblock-dialog-template">
<div>
你的帐号由于存在异常⾏为暂时被限制使⽤。如需恢复,请
<a target="_blank" href="/account/unblock">解封帐号</a>
</div>
</script>
<script type="text/json" class="json-inline" data-name="current_user">["","","","-1","",0,0]</script>
<script type="text/json" class="json-inline" data-name="front_web_config">{"realname_win_config":{"timestamp":1501344000,"tip":"\u5e94\u56fd\u5bb6\u6cd5\u89c4\u5bf9\u4e8e\u5e10\u53f7\u5b9e\u540d\u7684\u8981\u6c42\uff0c\u8fdb\u884c\u4e0b\u4e00\u6b65\u64cd\u4f5c\u524d\uff0c\u9700\u8981\u5148\u5b8c\u6210\u624b\u673a\u7ed1\u5b9a\u3002","continue":0,"continue_time":3600,"skip_ut_verification":0}}</script>
<script type="text/json" class="json-inline" data-name="user_status">[null,{"message":"\u60a8\u7684\u5e10\u53f7\u7531\u4e8e\u5b58\u5728\u5f02\u5e38\u884c\u4e3a\u6682\u65f6\u88ab\u77e5\u4e4e\u53cd\u4f5c\u5f0a\u7cfb\u7edf\u9650\u5236\u4f7f\u7528","by_antispam":true},false]</script>
<script type="text/json" class="json-inline" data-name="env">["zhihu.com","comet.zhihu.com",false,null,false,false]</script>
<script type="text/json" class="json-inline" data-name="permissions">[]</script>


<script type="text/json" class="json-inline" data-name="ga_vars">{"user_created":0,"now":1531056348000,"abtest_mask":"------------------------------","user_attr":[0,0,0,"-","-"],"user_hash":0}</script>

<script type="text/json" class="json-inline" data-name="ra-urls">{"Copyright":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/Copyright.38855dcd.js","PayUIApp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/PayUIApp.45d4fa11.js","CouponApp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/CouponApp.26054a5a.js","PaymentApp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/PaymentApp.ce2dee81.js","Community":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/Community.215d7dfc.js","Report":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/Report.a95e7362.js","OrgOpHelp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/OrgOpHelp.ec22f4a3.js","common":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/common.994fd1b5.js","BalanceApp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/BalanceApp.b35631e4.js","AnswerWarrant":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/AnswerWarrant.3f27fc82.js","CommentApp":"https:\/\/static.zhihu.com\/static\/revved\/-\/apps\/CommentApp.3e811ae9.js"}</script>

<script src="https://static.zhihu.com/static/revved/-/js/vendor.cb14a042.js"></script>
<script src="https://static.zhihu.com/static/revved/-/js/closure/base.05b6d7f6.js"></script>

<script src="https://static.zhihu.com/static/revved/-/js/closure/common.aa5ad897.js"></script>


<script src="https://static.zhihu.com/static/revved/-/js/closure/richtexteditor.c31820a9.js" async></script>
<script src="https://static.zhihu.com/static/revved/-/js/closure/page-main.df1f06a2.js"></script>
<meta name="entry" content="ZH.entryExplore" data-module-id="page-main">

<script type="text/zscript" znonce="ed8650ce5d0a44829e7a5135a90d7cb2"></script>

<input type="hidden" name="_xsrf" value="1be9abc60ffffffaf2d7df9fc8a703bb"/>
</body>
</html>

基本post请求

1
2
3
4
import requests
data = {'name':'kobe','age':'23'}
response = requests.post('http://www.httpbin.org/post',data=data)
print(response.text)
{"args":{},"data":"","files":{},"form":{"age":"23","name":"kobe"},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Content-Length":"16","Content-Type":"application/x-www-form-urlencoded","Host":"www.httpbin.org","User-Agent":"python-requests/2.19.1"},"json":null,"origin":"118.74.61.39","url":"http://www.httpbin.org/post"}
1
2
3
4
5
6
7
import requests
data = {'name':'kobe','age':'23'}
headers = {
'User-Agent': 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Mobile Safari/537.36'
}
response = requests.post('http://www.httpbin.org/post',data=data,headers=headers)
print(response.json())
{'args': {}, 'data': '', 'files': {}, 'form': {'age': '23', 'name': 'kobe'}, 'headers': {'Accept': '*/*', 'Accept-Encoding': 'gzip, deflate', 'Connection': 'close', 'Content-Length': '16', 'Content-Type': 'application/x-www-form-urlencoded', 'Host': 'www.httpbin.org', 'User-Agent': 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Mobile Safari/537.36'}, 'json': None, 'origin': '118.74.61.39', 'url': 'http://www.httpbin.org/post'}

响应

response属性

1
2
3
4
5
6
7
import requests
response= requests.get('http://www.jianshu.com')
print(type(response.status_code),response.status_code)
print(type(response.headers),response.headers)
print(type(response.cookies),response.cookies)
print(type(response.url),response.url)
print(type(response.history),response.history)
<class 'int'> 403
<class 'requests.structures.CaseInsensitiveDict'> {'Date': 'Thu, 05 Jul 2018 08:40:00 GMT', 'Server': 'Tengine', 'Content-Type': 'text/html', 'Transfer-Encoding': 'chunked', 'Strict-Transport-Security': 'max-age=31536000; includeSubDomains; preload', 'Content-Encoding': 'gzip', 'X-Via': '1.1 wj29:3 (Cdn Cache Server V2.0), 1.1 PSlndlwtvb8:10 (Cdn Cache Server V2.0), 1.1 ngtong165:0 (Cdn Cache Server V2.0)', 'Connection': 'keep-alive', 'X-Dscp-Value': '0'}
<class 'requests.cookies.RequestsCookieJar'> <RequestsCookieJar[]>
<class 'str'> https://www.jianshu.com/
<class 'list'> [<Response [301]>]

状态码判断

1
2
3
import requests
response = requests.get('http://www.jianshu.com')
exit()if not response.status_code == requests.codes.ok else print('requests succfully')
1
2
3
import requests
response = requests.get('http://www.jianshu.com')
exit() if not response.status_code == 200 else print('requests succfully')

高级操作

文件上传

1
2
3
4
import requests
files = {'file':open('images/logo.gif','rb')}
response = requests.post('http://www.httpbin.org/post',files=files)
print(response.text)
{"args":{},"data":"","files":{"file":"data:application/octet-stream;base64,AAABAAIAEBAAAAEAIAAoBQAAJgAAACAgAAABACAAKBQAAE4FAAAoAAAAEAAAACAAAAABACAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABERE3YTExPFDg4OEgAAAAAAAAAADw8PERERFLETExNpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQUFJYTExT8ExMU7QAAABkAAAAAAAAAAAAAABgVFRf/FRUX/xERE4UAAAAAAAAAAAAAAAAAAAAAAAAAABEREsETExTuERERHhAQEBAAAAAAAAAAAAAAAAAAAAANExMU9RUVF/8VFRf/EREUrwAAAAAAAAAAAAAAABQUFJkVFRf/BgYRLA4ODlwPDw/BDw8PIgAAAAAAAAAADw8PNBAQEP8VFRf/FRUX/xUVF/8UFBSPAAAAABAQEDAPDQ//AAAA+QEBAe0CAgL/AgIC9g4ODjgAAAAAAAAAAAgICEACAgLrFRUX/xUVF/8VFRf/FRUX/xERES0UFBWcFBQV/wEBAfwPDxH7DQ0ROwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0NEjoTExTnFRUX/xUVF/8SEhKaExMT2RUVF/8VFRf/ExMTTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERERTBUVF/8VFRf/ExMT2hMTFPYVFRf/FBQU8AAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAITExTxFRUX/xMTFPYTExT3FRUX/xQUFOEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQU4RUVF/8TExT3FBQU3hUVF/8TExT5Dw8PIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQHxMTFPgVFRf/FBQU3hERFKIVFRf/FRUX/w8PDzQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEEAVFRf/FRUX/xERFKIODg44FRUX/xUVF/8SEhKYAAAAAAAAAAwAAAAKAAAAAAAAAAAAAAAMAAAAAQAAAAASEhKYFRUX/xUVF/8ODg44AAAAABERFKQVFRf/ERESwQ4ODjYAAACBDQ0N3BISFNgSEhTYExMU9wAAAHQFBQU3ERESwRUVF/8RERSkAAAAAAAAAAAAAAADExMTxhUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8TExPGAAAAAwAAAAAAAAAAAAAAAAAAAAMRERSiFRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8RERSiAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQED4TExOXExMT2RISFPISEhTyExMT2RMTE5cQEBA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAIAAAAEAAAAABACAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVKwweHh4RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbGxscJCQkDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYWHSMXFxiSFRUX8RYWF/NAQEAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYWGO0WFhfzFhYYlRwcHCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQkJAcWFhiAFhYY+BUVF/8VFRf/FRUX/yAgIAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUX/hUVF/8VFRf/FhYY+RYWGIIgICAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbGxscFhYX0BUVF/8VFRf/FRUX/xUVF/8VFRf/KysrBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVFRf9FRUX/xUVF/8VFRf/FRUX/xYWF9IaGhoeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhYbLxUVF+YVFRf/FRUX/BYWGLgWFhh0FhYZZxYWGH5VVVUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVF/wVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF+YWFhsvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoaGh0VFRfmFRUX/xUVF/wYGBhJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUX+xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF+YaGhodAAAAAAAAAAAAAAAAAAAAAAAAAAAkJCQHFhYX0RUVF/8VFRf/FRUYnQAAAAAVFSAYFhYYcxUVF5AXFxlmJCQkBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcHBIVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xYWF9EkJCQHAAAAAAAAAAAAAAAAAAAAABYWGIEVFRf/FRUX/xUVF/EbGxscHBwcJRYWGOsVFRf/FRUX/xUVF/8XFxpOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYQBUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xYWGIAAAAAAAAAAAAAAAAAVFRwkFhYY+RUVF/8VFRjuFhYaRRUVKwwWFhfPFRUX/xUVF/8VFRf/FRUX/xYWF8SAgIACAAAAAAAAAAAAAAAAAAAAAAAAAAAVFRi/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FhYY+BYWHSMAAAAAAAAAABYWGJQVFRf/FRUX/xYWF44XFxpaFhYX0RUVF/8VFRf/FRUY4hYWGIAWFhpFHBwcEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIg8XFxdCFxcZexYWF9sVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FxcYkwAAAAAnJycNFRUX8hUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/hYWGIIzMzMFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAAhYWGHQVFRf8FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRfyFRUrDBYWGVIVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8WFhh0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVGGAVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8WFhlSFRUZkRUVF/8VFRf/FRUX/xUVF/8VFRf/FRUYyv///wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYWGLcVFRf/FRUX/xUVF/8VFRf/FRUX/xUVGZEWFhjJFRUX/xUVF/8VFRf/FRUX/xUVF/8WFhlcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhYZRxUVF/8VFRf/FRUX/xUVF/8VFRf/FhYYyBYWGOEVFRf/FRUX/xUVF/8VFRf/FRUX/xcXFxYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgICAIFhYY+BUVF/8VFRf/FRUX/xUVF/8WFhjgFhYY9RUVF/8VFRf/FRUX/xUVF/8VFRfyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFhjeFRUX/xUVF/8VFRf/FRUX/xYWGPUWFhfzFRUX/xUVF/8VFRf/FRUX/xYWGN4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVGMoVFRf/FRUX/xUVF/8VFRf/FhYX8xUVGNkVFRf/FRUX/xUVF/8VFRf/FhYY9P///wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhYY4RUVF/8VFRf/FRUX/xUVF/8VFRjZFRUYvxUVF/8VFRf/FRUX/xUVF/8VFRf/HBwcJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgIBAVFRf/FRUX/xUVF/8VFRf/FRUX/xUVGL8WFhiVFRUX/xUVF/8VFRf/FRUX/xUVF/8WFhh2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUYYRUVF/8VFRf/FRUX/xUVF/8VFRf/FhYYlRYWGUcVFRf/FRUX/xUVF/8VFRf/FRUX/xYWGPQZGRkfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABsbGxMWFhjrFRUX/xUVF/8VFRf/FRUX/xUVF/8WFhlHKysrBhUVF/EVFRf/FRUX/xUVF/8VFRf/FRUX/xYWGV0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYSRUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX8SsrKwYAAAAAFhYYlxUVF/8VFRf/FRUX/xUVF/8VFRf/GRkZMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaGhoeFRUX/xUVF/8VFRf/FRUX/xUVF/8WFhiXAAAAAAAAAAAVFSAYFhYY9BUVF/8VFRf/FRUX/xUVF/8YGBg1AAAAAAAAAAAAAAAAFRUrDBgYGCqAgIACAAAAAAAAAAAAAAAAAAAAAP///wEbGxsmHh4eEQAAAAAAAAAAAAAAABcXFyEVFRf/FRUX/xUVF/8VFRf/FhYY9BUVIBgAAAAAAAAAAAAAAAAWFhiCFRUX/xUVF/8VFRf/FRUX/xcXGWYAAAAAQEBABBcXF2IWFhfnFRUX/xYWF/MWFhfSFRUYwRUVGMAWFhfRFRUX8BUVF/8WFhjtFRUYbCsrKwYAAAAAFhYZUhUVF/8VFRf/FRUX/xUVF/8WFhiCAAAAAAAAAAAAAAAAAAAAACQkJAcWFhjIFRUX/xUVF/8VFRf/FRUY1hUVGKgWFhjsFRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX7xUVGKoVFRjNFRUX/xUVF/8VFRf/FhYYyCQkJAcAAAAAAAAAAAAAAAAAAAAAAAAAABUVIBgVFRjjFRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVGOMVFSAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYWHC4VFRjjFRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRjjFhYcLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVIBgWFhjIFRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FhYYyBUVIBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQkJAcWFhiCFhYY9BUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FhYY9BYWGIIkJCQHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVFSAYFhYYlxUVF/EVFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX/xUVF/8VFRf/FRUX8RYWGJcVFSAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKysrBhYWGUcWFhiVFRUYvxUVGNkWFhfzFhYX8xUVGNkVFRi/FhYYlRYWGUcrKysGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="},"form":{},"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate","Connection":"close","Content-Length":"6662","Content-Type":"multipart/form-data; boundary=ceffc5ef19529de38056fa81e98145a7","Host":"www.httpbin.org","User-Agent":"python-requests/2.19.1"},"json":null,"origin":"118.74.61.39","url":"http://www.httpbin.org/post"}

获取cookie

1
2
3
4
5
import requests
response = requests.get('http://www.baidu.com')
print(response.cookies)
for key,value in response.cookies.items():
print(key+'='+value)
<RequestsCookieJar[<Cookie BDORZ=27315 for .baidu.com/>]>
BDORZ=27315

会话维持

模拟登陆

1
2
3
4
import requests
requests.get('http://www.httpbin.org/cookies/set/number/123456789')
response = requests.get('http://www.httpbin.org/cookies')
print(response.text)
{"cookies":{}}
1
2
3
4
5
import requests
s = requests.Session()
s.get('http://www.httpbin.org/cookies/set/number/123456789')
response = s.get('http://www.httpbin.org/cookies')
print(response.text)
{"cookies":{"number":"123456789"}}

证书验证

1
2
3
import requests
response = requests.get('https://www.12306.cn')
print(response.status_code)
---------------------------------------------------------------------------

CertificateError                          Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    599                                                   body=body, headers=headers,
--> 600                                                   chunked=chunked)
    601 


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    342         try:
--> 343             self._validate_conn(conn)
    344         except (SocketTimeout, BaseSSLError) as e:


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in _validate_conn(self, conn)
    848         if not getattr(conn, 'sock', None):  # AppEngine might not have  `.sock`
--> 849             conn.connect()
    850 


d:\pytho3.6\lib\site-packages\urllib3\connection.py in connect(self)
    375                 )
--> 376             _match_hostname(cert, self.assert_hostname or hostname)
    377 


d:\pytho3.6\lib\site-packages\urllib3\connection.py in _match_hostname(cert, asserted_hostname)
    385     try:
--> 386         match_hostname(cert, asserted_hostname)
    387     except CertificateError as e:


d:\pytho3.6\lib\ssl.py in match_hostname(cert, hostname)
    326             "doesn't match either of %s"
--> 327             % (hostname, ', '.join(map(repr, dnsnames))))
    328     elif len(dnsnames) == 1:


CertificateError: hostname 'www.12306.cn' doesn't match either of 'webssl.chinanetcenter.com', 'i.l.inmobicdn.net', '*.fn-mart.com', 'www.1zhe.com', '*.pinganfang.com', '*.anhouse.com', 'dl.jphbpk.gxpan.cn', 'dl.givingtales.gxpan.cn', 'dl.toyblast.gxpan.cn', 'dl.sds.gxpan.cn', 'download.ctrip.com', 'mh.tiancity.com', 'app.4399.cn', 'i.4399.cn', 'm.4399.cn', 'a.4399.cn', 'cdn.hxjyios.iwan4399.com', 'ios.hxjy.iwan4399.com', 'gjzx.gjzq.com.cn', 'f.3000test.com', 'tj.img4399.com', '*.zhe800.com', '*.qiyipic.com', '*.vxinyou.com', '*.gdjh.vxinyou.com', '*.3000.com', 'pay.game2.cn', 'static1.j.cn', 'static2.j.cn', 'static3.j.cn', 'static4.j.cn', 'video1.j.cn', 'video2.j.cn', 'video3.j.cn', 'online.j.cn', 'playback.live.j.cn', 'audio1.guang.j.cn', 'audio2.guang.j.cn', 'audio3.guang.j.cn', 'img1.guang.j.cn', 'img2.guang.j.cn', 'img3.guang.j.cn', 'img4.guang.j.cn', 'img5.guang.j.cn', 'img6.guang.j.cn', '*.4399youpai.com', 'w.tancdn.com', '*.3000api.com', 'static11.j.cn', '*.kuyinyun.com', '*.kuyin123.com', '*.diyring.cc', '3000test.com', '*.3000test.com', 'www.3387.com', 'bbs.4399.cn', '*.cankaoxiaoxi.com', '*.service.kugou.com', 'test.macauslot.com', 'testm.macauslot.com', 'testtran.macauslot.com', 'xiuxiu.huodong.meitu.com', '*.meitu.com', '*.meitudata.com', '*.wheetalk.com', '*.shanliaoapp.com', 'xiuxiu.web.meitu.com', 'api.account.meitu.com', 'open.web.meitu.com', 'id.api.meitu.com', 'api.makeup.meitu.com', 'im.live.meipai.com', '*.meipai.com', 'm.macauslot.com', 'www.macauslot.com', 'web.macauslot.com', 'translation.macauslot.com', 'img1.homekoocdn.com', 'cdn.homekoocdn.com', 'cdn1.homekoocdn.com', 'cdn2.homekoocdn.com', 'cdn3.homekoocdn.com', 'cdn4.homekoocdn.com', 'img.homekoocdn.com', 'img2.homekoocdn.com', 'img3.homekoocdn.com', 'img4.homekoocdn.com', '*.macauslot.com', '*.samsungapps.com', 'auto.tancdn.com', '*.winbo.top', 'static.bst.meitu.com', 'api.xiuxiu.meitu.com', 'api.photo.meituyun.com', 'h5.selfiecity.meitu.com', 'api.selfiecity.meitu.com', 'h5.beautymaster.meiyan.com', 'api.beautymaster.meiyan.com', 'www.yawenb.com', 'm.yawenb.com', 'www.biqugg.com', 'www.dawenxue.net', 'cpg.meitubase.com', 'www.qushuba.com', 'www.ranwena.com', 'www.u8xsw.com', '*.4399sy.com', 'ms.awqsaged.cn', 'fanxing2.kugou.com', 'fanxing.kugou.com', 'sso.56.com', 'upload.qf.56.com', 'sso.qianfan.tv', 'cdn.danmu.56.com', 'www-ppd.hermes.cn', 'www-uat.hermes.cn', 'www-ts2.hermes.cn', 'www-tst.hermes.cn', '*.syyx.com', 'img.wgeqr.cn', 'img.wgewa.cn', 'img.09mk.cn', 'img.85nh.cn', '*.zhuoquapp.com', 'img.dtmpekda8.cn', 'img.etmpekda6.cn', '*.5054399.com', '*.aiwan4399.com', 'user.beevideo.bestv.com.cn', '*.3839.com'


During handling of the above exception, another exception occurred:


MaxRetryError                             Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    444                     retries=self.max_retries,
--> 445                     timeout=timeout
    446                 )


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    637             retries = retries.increment(method, url, error=e, _pool=self,
--> 638                                         _stacktrace=sys.exc_info()[2])
    639             retries.sleep()


d:\pytho3.6\lib\site-packages\urllib3\util\retry.py in increment(self, method, url, response, error, _pool, _stacktrace)
    397         if new_retry.is_exhausted():
--> 398             raise MaxRetryError(_pool, url, error or ResponseError(cause))
    399 


MaxRetryError: HTTPSConnectionPool(host='www.12306.cn', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError("hostname 'www.12306.cn' doesn't match either of 'webssl.chinanetcenter.com', 'i.l.inmobicdn.net', '*.fn-mart.com', 'www.1zhe.com', '*.pinganfang.com', '*.anhouse.com', 'dl.jphbpk.gxpan.cn', 'dl.givingtales.gxpan.cn', 'dl.toyblast.gxpan.cn', 'dl.sds.gxpan.cn', 'download.ctrip.com', 'mh.tiancity.com', 'app.4399.cn', 'i.4399.cn', 'm.4399.cn', 'a.4399.cn', 'cdn.hxjyios.iwan4399.com', 'ios.hxjy.iwan4399.com', 'gjzx.gjzq.com.cn', 'f.3000test.com', 'tj.img4399.com', '*.zhe800.com', '*.qiyipic.com', '*.vxinyou.com', '*.gdjh.vxinyou.com', '*.3000.com', 'pay.game2.cn', 'static1.j.cn', 'static2.j.cn', 'static3.j.cn', 'static4.j.cn', 'video1.j.cn', 'video2.j.cn', 'video3.j.cn', 'online.j.cn', 'playback.live.j.cn', 'audio1.guang.j.cn', 'audio2.guang.j.cn', 'audio3.guang.j.cn', 'img1.guang.j.cn', 'img2.guang.j.cn', 'img3.guang.j.cn', 'img4.guang.j.cn', 'img5.guang.j.cn', 'img6.guang.j.cn', '*.4399youpai.com', 'w.tancdn.com', '*.3000api.com', 'static11.j.cn', '*.kuyinyun.com', '*.kuyin123.com', '*.diyring.cc', '3000test.com', '*.3000test.com', 'www.3387.com', 'bbs.4399.cn', '*.cankaoxiaoxi.com', '*.service.kugou.com', 'test.macauslot.com', 'testm.macauslot.com', 'testtran.macauslot.com', 'xiuxiu.huodong.meitu.com', '*.meitu.com', '*.meitudata.com', '*.wheetalk.com', '*.shanliaoapp.com', 'xiuxiu.web.meitu.com', 'api.account.meitu.com', 'open.web.meitu.com', 'id.api.meitu.com', 'api.makeup.meitu.com', 'im.live.meipai.com', '*.meipai.com', 'm.macauslot.com', 'www.macauslot.com', 'web.macauslot.com', 'translation.macauslot.com', 'img1.homekoocdn.com', 'cdn.homekoocdn.com', 'cdn1.homekoocdn.com', 'cdn2.homekoocdn.com', 'cdn3.homekoocdn.com', 'cdn4.homekoocdn.com', 'img.homekoocdn.com', 'img2.homekoocdn.com', 'img3.homekoocdn.com', 'img4.homekoocdn.com', '*.macauslot.com', '*.samsungapps.com', 'auto.tancdn.com', '*.winbo.top', 'static.bst.meitu.com', 'api.xiuxiu.meitu.com', 'api.photo.meituyun.com', 'h5.selfiecity.meitu.com', 'api.selfiecity.meitu.com', 'h5.beautymaster.meiyan.com', 'api.beautymaster.meiyan.com', 'www.yawenb.com', 'm.yawenb.com', 'www.biqugg.com', 'www.dawenxue.net', 'cpg.meitubase.com', 'www.qushuba.com', 'www.ranwena.com', 'www.u8xsw.com', '*.4399sy.com', 'ms.awqsaged.cn', 'fanxing2.kugou.com', 'fanxing.kugou.com', 'sso.56.com', 'upload.qf.56.com', 'sso.qianfan.tv', 'cdn.danmu.56.com', 'www-ppd.hermes.cn', 'www-uat.hermes.cn', 'www-ts2.hermes.cn', 'www-tst.hermes.cn', '*.syyx.com', 'img.wgeqr.cn', 'img.wgewa.cn', 'img.09mk.cn', 'img.85nh.cn', '*.zhuoquapp.com', 'img.dtmpekda8.cn', 'img.etmpekda6.cn', '*.5054399.com', '*.aiwan4399.com', 'user.beevideo.bestv.com.cn', '*.3839.com'",),))


During handling of the above exception, another exception occurred:


SSLError                                  Traceback (most recent call last)

<ipython-input-10-5b69510fa67c> in <module>()
      1 import requests
----> 2 response = requests.get('https://www.12306.cn')
      3 print(response.status_code)


d:\pytho3.6\lib\site-packages\requests\api.py in get(url, params, **kwargs)
     70 
     71     kwargs.setdefault('allow_redirects', True)
---> 72     return request('get', url, params=params, **kwargs)
     73 
     74 


d:\pytho3.6\lib\site-packages\requests\api.py in request(method, url, **kwargs)
     56     # cases, and look like a memory leak in others.
     57     with sessions.Session() as session:
---> 58         return session.request(method=method, url=url, **kwargs)
     59 
     60 


d:\pytho3.6\lib\site-packages\requests\sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    510         }
    511         send_kwargs.update(settings)
--> 512         resp = self.send(prep, **send_kwargs)
    513 
    514         return resp


d:\pytho3.6\lib\site-packages\requests\sessions.py in send(self, request, **kwargs)
    620 
    621         # Send the request
--> 622         r = adapter.send(request, **kwargs)
    623 
    624         # Total elapsed time of the request (approximately)


d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    509             if isinstance(e.reason, _SSLError):
    510                 # This branch is for urllib3 v1.22 and later.
--> 511                 raise SSLError(e, request=request)
    512 
    513             raise ConnectionError(e, request=request)


SSLError: HTTPSConnectionPool(host='www.12306.cn', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError("hostname 'www.12306.cn' doesn't match either of 'webssl.chinanetcenter.com', 'i.l.inmobicdn.net', '*.fn-mart.com', 'www.1zhe.com', '*.pinganfang.com', '*.anhouse.com', 'dl.jphbpk.gxpan.cn', 'dl.givingtales.gxpan.cn', 'dl.toyblast.gxpan.cn', 'dl.sds.gxpan.cn', 'download.ctrip.com', 'mh.tiancity.com', 'app.4399.cn', 'i.4399.cn', 'm.4399.cn', 'a.4399.cn', 'cdn.hxjyios.iwan4399.com', 'ios.hxjy.iwan4399.com', 'gjzx.gjzq.com.cn', 'f.3000test.com', 'tj.img4399.com', '*.zhe800.com', '*.qiyipic.com', '*.vxinyou.com', '*.gdjh.vxinyou.com', '*.3000.com', 'pay.game2.cn', 'static1.j.cn', 'static2.j.cn', 'static3.j.cn', 'static4.j.cn', 'video1.j.cn', 'video2.j.cn', 'video3.j.cn', 'online.j.cn', 'playback.live.j.cn', 'audio1.guang.j.cn', 'audio2.guang.j.cn', 'audio3.guang.j.cn', 'img1.guang.j.cn', 'img2.guang.j.cn', 'img3.guang.j.cn', 'img4.guang.j.cn', 'img5.guang.j.cn', 'img6.guang.j.cn', '*.4399youpai.com', 'w.tancdn.com', '*.3000api.com', 'static11.j.cn', '*.kuyinyun.com', '*.kuyin123.com', '*.diyring.cc', '3000test.com', '*.3000test.com', 'www.3387.com', 'bbs.4399.cn', '*.cankaoxiaoxi.com', '*.service.kugou.com', 'test.macauslot.com', 'testm.macauslot.com', 'testtran.macauslot.com', 'xiuxiu.huodong.meitu.com', '*.meitu.com', '*.meitudata.com', '*.wheetalk.com', '*.shanliaoapp.com', 'xiuxiu.web.meitu.com', 'api.account.meitu.com', 'open.web.meitu.com', 'id.api.meitu.com', 'api.makeup.meitu.com', 'im.live.meipai.com', '*.meipai.com', 'm.macauslot.com', 'www.macauslot.com', 'web.macauslot.com', 'translation.macauslot.com', 'img1.homekoocdn.com', 'cdn.homekoocdn.com', 'cdn1.homekoocdn.com', 'cdn2.homekoocdn.com', 'cdn3.homekoocdn.com', 'cdn4.homekoocdn.com', 'img.homekoocdn.com', 'img2.homekoocdn.com', 'img3.homekoocdn.com', 'img4.homekoocdn.com', '*.macauslot.com', '*.samsungapps.com', 'auto.tancdn.com', '*.winbo.top', 'static.bst.meitu.com', 'api.xiuxiu.meitu.com', 'api.photo.meituyun.com', 'h5.selfiecity.meitu.com', 'api.selfiecity.meitu.com', 'h5.beautymaster.meiyan.com', 'api.beautymaster.meiyan.com', 'www.yawenb.com', 'm.yawenb.com', 'www.biqugg.com', 'www.dawenxue.net', 'cpg.meitubase.com', 'www.qushuba.com', 'www.ranwena.com', 'www.u8xsw.com', '*.4399sy.com', 'ms.awqsaged.cn', 'fanxing2.kugou.com', 'fanxing.kugou.com', 'sso.56.com', 'upload.qf.56.com', 'sso.qianfan.tv', 'cdn.danmu.56.com', 'www-ppd.hermes.cn', 'www-uat.hermes.cn', 'www-ts2.hermes.cn', 'www-tst.hermes.cn', '*.syyx.com', 'img.wgeqr.cn', 'img.wgewa.cn', 'img.09mk.cn', 'img.85nh.cn', '*.zhuoquapp.com', 'img.dtmpekda8.cn', 'img.etmpekda6.cn', '*.5054399.com', '*.aiwan4399.com', 'user.beevideo.bestv.com.cn', '*.3839.com'",),))
1
2
3
4
5
import requests
from requests.packages import urllib3
urllib3.disable_warnings()
response = requests.get('https://www.12306.cn',verify=False)
print(response.status_code)
200
1
2
3
import requests
response = requests.get('https://www.12306.cn',cert=)
print(response.status_code)

代理设置

1
2
3
4
5
6
7
import requests
proxies = {
'http':'http://101.236.35.98:8866',
'https':'https://14.118.254.153:6666',
}
response = requests.get('https://www.taobao.com',proxies=proxies)
print(response.status_code)
200

超时设置

1
2
3
import requests
response = requests.get('https://www.taobao.com',timeout=1)
print(response.status_code)
200
1
2
3
4
5
6
7
import requests
from requests.exceptions import ReadTimeout
try:
response = requests.get('http://www.httpbin.org',timeout=0.1)
print(response.status_code)
except:
print('TIME OUT')
TIME OUT

yicha

1
2
3
4
5
6
7
8
import requests
from requests.exceptions import Timeout
from requests.auth import HTTPBasicAuth
try:
response = requests.get('http://120.27.34.24:9001',auth=HTTPBasicAuth('user','123'))
print(response.status_code)
except Timeout:
print('time out')
---------------------------------------------------------------------------

TimeoutError                              Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\urllib3\connection.py in _new_conn(self)
    170             conn = connection.create_connection(
--> 171                 (self._dns_host, self.port), self.timeout, **extra_kw)
    172 


d:\pytho3.6\lib\site-packages\urllib3\util\connection.py in create_connection(address, timeout, source_address, socket_options)
     78     if err is not None:
---> 79         raise err
     80 


d:\pytho3.6\lib\site-packages\urllib3\util\connection.py in create_connection(address, timeout, source_address, socket_options)
     68                 sock.bind(source_address)
---> 69             sock.connect(sa)
     70             return sock


TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。


During handling of the above exception, another exception occurred:


NewConnectionError                        Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    599                                                   body=body, headers=headers,
--> 600                                                   chunked=chunked)
    601 


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    353         else:
--> 354             conn.request(method, url, **httplib_request_kw)
    355 


d:\pytho3.6\lib\http\client.py in request(self, method, url, body, headers, encode_chunked)
   1238         """Send a complete request to the server."""
-> 1239         self._send_request(method, url, body, headers, encode_chunked)
   1240 


d:\pytho3.6\lib\http\client.py in _send_request(self, method, url, body, headers, encode_chunked)
   1284             body = _encode(body, 'body')
-> 1285         self.endheaders(body, encode_chunked=encode_chunked)
   1286 


d:\pytho3.6\lib\http\client.py in endheaders(self, message_body, encode_chunked)
   1233             raise CannotSendHeader()
-> 1234         self._send_output(message_body, encode_chunked=encode_chunked)
   1235 


d:\pytho3.6\lib\http\client.py in _send_output(self, message_body, encode_chunked)
   1025         del self._buffer[:]
-> 1026         self.send(msg)
   1027 


d:\pytho3.6\lib\http\client.py in send(self, data)
    963             if self.auto_open:
--> 964                 self.connect()
    965             else:


d:\pytho3.6\lib\site-packages\urllib3\connection.py in connect(self)
    195     def connect(self):
--> 196         conn = self._new_conn()
    197         self._prepare_conn(conn)


d:\pytho3.6\lib\site-packages\urllib3\connection.py in _new_conn(self)
    179             raise NewConnectionError(
--> 180                 self, "Failed to establish a new connection: %s" % e)
    181 


NewConnectionError: <urllib3.connection.HTTPConnection object at 0x000000B422F736D8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。


During handling of the above exception, another exception occurred:


MaxRetryError                             Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    444                     retries=self.max_retries,
--> 445                     timeout=timeout
    446                 )


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    637             retries = retries.increment(method, url, error=e, _pool=self,
--> 638                                         _stacktrace=sys.exc_info()[2])
    639             retries.sleep()


d:\pytho3.6\lib\site-packages\urllib3\util\retry.py in increment(self, method, url, response, error, _pool, _stacktrace)
    397         if new_retry.is_exhausted():
--> 398             raise MaxRetryError(_pool, url, error or ResponseError(cause))
    399 


MaxRetryError: HTTPConnectionPool(host='120.27.34.24', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000000B422F736D8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。',))


During handling of the above exception, another exception occurred:


ConnectionError                           Traceback (most recent call last)

<ipython-input-54-c64984b87424> in <module>()
      3 from requests.auth import HTTPBasicAuth
      4 try:
----> 5     response = requests.get('http://120.27.34.24:9001',auth=HTTPBasicAuth('user','123'))
      6     print(response.status_code)
      7 except Timeout:


d:\pytho3.6\lib\site-packages\requests\api.py in get(url, params, **kwargs)
     70 
     71     kwargs.setdefault('allow_redirects', True)
---> 72     return request('get', url, params=params, **kwargs)
     73 
     74 


d:\pytho3.6\lib\site-packages\requests\api.py in request(method, url, **kwargs)
     56     # cases, and look like a memory leak in others.
     57     with sessions.Session() as session:
---> 58         return session.request(method=method, url=url, **kwargs)
     59 
     60 


d:\pytho3.6\lib\site-packages\requests\sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    510         }
    511         send_kwargs.update(settings)
--> 512         resp = self.send(prep, **send_kwargs)
    513 
    514         return resp


d:\pytho3.6\lib\site-packages\requests\sessions.py in send(self, request, **kwargs)
    620 
    621         # Send the request
--> 622         r = adapter.send(request, **kwargs)
    623 
    624         # Total elapsed time of the request (approximately)


d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    511                 raise SSLError(e, request=request)
    512 
--> 513             raise ConnectionError(e, request=request)
    514 
    515         except ClosedPoolError as e:


ConnectionError: HTTPConnectionPool(host='120.27.34.24', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000000B422F736D8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。',))
1
2
3
import requests
response = requests.get('http://120.27.34.24:9001',auth=('user','123'))
print(response.status_code)
---------------------------------------------------------------------------

TimeoutError                              Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\urllib3\connection.py in _new_conn(self)
    170             conn = connection.create_connection(
--> 171                 (self._dns_host, self.port), self.timeout, **extra_kw)
    172 


d:\pytho3.6\lib\site-packages\urllib3\util\connection.py in create_connection(address, timeout, source_address, socket_options)
     78     if err is not None:
---> 79         raise err
     80 


d:\pytho3.6\lib\site-packages\urllib3\util\connection.py in create_connection(address, timeout, source_address, socket_options)
     68                 sock.bind(source_address)
---> 69             sock.connect(sa)
     70             return sock


TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。


During handling of the above exception, another exception occurred:


NewConnectionError                        Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    599                                                   body=body, headers=headers,
--> 600                                                   chunked=chunked)
    601 


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    353         else:
--> 354             conn.request(method, url, **httplib_request_kw)
    355 


d:\pytho3.6\lib\http\client.py in request(self, method, url, body, headers, encode_chunked)
   1238         """Send a complete request to the server."""
-> 1239         self._send_request(method, url, body, headers, encode_chunked)
   1240 


d:\pytho3.6\lib\http\client.py in _send_request(self, method, url, body, headers, encode_chunked)
   1284             body = _encode(body, 'body')
-> 1285         self.endheaders(body, encode_chunked=encode_chunked)
   1286 


d:\pytho3.6\lib\http\client.py in endheaders(self, message_body, encode_chunked)
   1233             raise CannotSendHeader()
-> 1234         self._send_output(message_body, encode_chunked=encode_chunked)
   1235 


d:\pytho3.6\lib\http\client.py in _send_output(self, message_body, encode_chunked)
   1025         del self._buffer[:]
-> 1026         self.send(msg)
   1027 


d:\pytho3.6\lib\http\client.py in send(self, data)
    963             if self.auto_open:
--> 964                 self.connect()
    965             else:


d:\pytho3.6\lib\site-packages\urllib3\connection.py in connect(self)
    195     def connect(self):
--> 196         conn = self._new_conn()
    197         self._prepare_conn(conn)


d:\pytho3.6\lib\site-packages\urllib3\connection.py in _new_conn(self)
    179             raise NewConnectionError(
--> 180                 self, "Failed to establish a new connection: %s" % e)
    181 


NewConnectionError: <urllib3.connection.HTTPConnection object at 0x000000B422F359E8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。


During handling of the above exception, another exception occurred:


MaxRetryError                             Traceback (most recent call last)

d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    444                     retries=self.max_retries,
--> 445                     timeout=timeout
    446                 )


d:\pytho3.6\lib\site-packages\urllib3\connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    637             retries = retries.increment(method, url, error=e, _pool=self,
--> 638                                         _stacktrace=sys.exc_info()[2])
    639             retries.sleep()


d:\pytho3.6\lib\site-packages\urllib3\util\retry.py in increment(self, method, url, response, error, _pool, _stacktrace)
    397         if new_retry.is_exhausted():
--> 398             raise MaxRetryError(_pool, url, error or ResponseError(cause))
    399 


MaxRetryError: HTTPConnectionPool(host='120.27.34.24', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000000B422F359E8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。',))


During handling of the above exception, another exception occurred:


ConnectionError                           Traceback (most recent call last)

<ipython-input-23-be20ef4e58a8> in <module>()
      1 import requests
----> 2 response = requests.get('http://120.27.34.24:9001',auth=('user','123'))
      3 print(response.status_code)


d:\pytho3.6\lib\site-packages\requests\api.py in get(url, params, **kwargs)
     70 
     71     kwargs.setdefault('allow_redirects', True)
---> 72     return request('get', url, params=params, **kwargs)
     73 
     74 


d:\pytho3.6\lib\site-packages\requests\api.py in request(method, url, **kwargs)
     56     # cases, and look like a memory leak in others.
     57     with sessions.Session() as session:
---> 58         return session.request(method=method, url=url, **kwargs)
     59 
     60 


d:\pytho3.6\lib\site-packages\requests\sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    510         }
    511         send_kwargs.update(settings)
--> 512         resp = self.send(prep, **send_kwargs)
    513 
    514         return resp


d:\pytho3.6\lib\site-packages\requests\sessions.py in send(self, request, **kwargs)
    620 
    621         # Send the request
--> 622         r = adapter.send(request, **kwargs)
    623 
    624         # Total elapsed time of the request (approximately)


d:\pytho3.6\lib\site-packages\requests\adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    511                 raise SSLError(e, request=request)
    512 
--> 513             raise ConnectionError(e, request=request)
    514 
    515         except ClosedPoolError as e:


ConnectionError: HTTPConnectionPool(host='120.27.34.24', port=9001): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x000000B422F359E8>: Failed to establish a new connection: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。',))
1
2
3
4
5
6
7
8
9
10
11
import requests
from requests.exceptions import ReadTimeout,HTTPError,ConnectionError,RequestException
try:
response = requests.get('http://www.httpbin.org/get',timeout=0.5)
print(response.status_code)
except ReadTimeout:
print('TIME OUT')
except ConnectionError:
print('Connect error')
except RequestException:
print('request error')
200
赞赏一下吧~