V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
aliehuhu
V2EX  ›  Python

请问下列语句有错误么?用 python3

  •  
  •   aliehuhu · 2017-09-16 11:01:01 +08:00 · 2990 次点击
    这是一个创建于 2415 天前的主题,其中的信息可能已经有所发展或是发生改变。
    #!/usr/bin/python
    import urllib.request
    import urllib.error

    try:
    response = urllib.request.urlopen('https://www.baidu.com',timeout=2)
    html = response.read().decode('utf-8')
    print(html)
    except urllib.error.HTTPError as e:
    print('error')
    13 条回复    2017-09-16 23:09:05 +08:00
    chinesejar
        1
    chinesejar  
       2017-09-16 11:10:04 +08:00
    看似没有错误
    qsnow6
        2
    qsnow6  
       2017-09-16 11:17:57 +08:00
    没缩进
    aliehuhu
        3
    aliehuhu  
    OP
       2017-09-16 11:21:25 +08:00
    @qsnow6 复制的时候有缩进,发布的时候没有了
    infun
        4
    infun  
       2017-09-16 11:26:15 +08:00
    ```
    #!/usr/bin/python
    ```
    哪里用 python3 了?
    everfight
        5
    everfight  
       2017-09-16 11:34:41 +08:00
    试了下应该是 error 的类型错了

    #!/usr/bin/python
    import urllib.request
    import urllib.error

    try:
    response = urllib.request.urlopen('https://www.baidu.com',timeout=2)
    html = response.read().decode('utf-8')
    print(html)
    except:
    print('error')

    打印的结果如下:
    <html>
    <head>
    <script>
    location.replace(location.href.replace("https://","http://"));
    </script>
    </head>
    <body>
    <noscript><meta http-equiv="refresh" content="0;url=http://www.baidu.com/"></noscript>
    </body>
    </html>
    nitro123
        6
    nitro123  
       2017-09-16 15:01:45 +08:00 via Android
    @infun 有些发行版默认就是 3
    sunwei0325
        7
    sunwei0325  
       2017-09-16 15:20:30 +08:00
    #!/usr/bin/env python3
    Valyrian
        8
    Valyrian  
       2017-09-16 15:28:43 +08:00
    支持楼上,用 env
    ChristopherWu
        9
    ChristopherWu  
       2017-09-16 18:21:54 +08:00
    f
    ChristopherWu
        10
    ChristopherWu  
       2017-09-16 18:22:24 +08:00
    ```
    import urllib.request
    import urllib.error

    try:
    response = urllib.request.urlopen('https://www.baidu.com',timeout=2)
    html = response.read().decode('utf-8')
    print(html)
    except urllib.error.HTTPError as e:
    print('error')
    ```
    是没问题的。
    输出的 html 也正常
    wellsc
        11
    wellsc  
       2017-09-16 18:29:35 +08:00 via iPhone
    @infun 不算是错误,万一人家系统 python 默认版本就是 3 呢?
    julyclyde
        12
    julyclyde  
       2017-09-16 22:56:38 +08:00
    @wellsc 这个不合规。python3 的可执行文件不能叫 python,只能叫 python3
    wellsc
        13
    wellsc  
       2017-09-16 23:09:05 +08:00
    @julyclyde 求出处
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1235 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 17:48 · PVG 01:48 · LAX 10:48 · JFK 13:48
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.