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 年 9 月 16 日 · 3684 次点击
    这是一个创建于 3046 天前的主题,其中的信息可能已经有所发展或是发生改变。
    #!/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 年 9 月 16 日
    看似没有错误
    qsnow6
        2
    qsnow6  
       2017 年 9 月 16 日
    没缩进
    aliehuhu
        3
    aliehuhu  
    OP
       2017 年 9 月 16 日
    @qsnow6 复制的时候有缩进,发布的时候没有了
    GlobalNPC
        4
    GlobalNPC  
       2017 年 9 月 16 日
    ```
    #!/usr/bin/python
    ```
    哪里用 python3 了?
    everfight
        5
    everfight  
       2017 年 9 月 16 日
    试了下应该是 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 年 9 月 16 日 via Android
    @infun 有些发行版默认就是 3
    sunwei0325
        7
    sunwei0325  
       2017 年 9 月 16 日
    #!/usr/bin/env python3
    Valyrian
        8
    Valyrian  
       2017 年 9 月 16 日
    支持楼上,用 env
    ChristopherWu
        9
    ChristopherWu  
       2017 年 9 月 16 日
    f
    ChristopherWu
        10
    ChristopherWu  
       2017 年 9 月 16 日
    ```
    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 年 9 月 16 日 via iPhone
    @infun 不算是错误,万一人家系统 python 默认版本就是 3 呢?
    julyclyde
        12
    julyclyde  
       2017 年 9 月 16 日
    @wellsc 这个不合规。python3 的可执行文件不能叫 python,只能叫 python3
    wellsc
        13
    wellsc  
       2017 年 9 月 16 日
    @julyclyde 求出处
    关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2648 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 05:31 · PVG 13:31 · LAX 21:31 · JFK 00:31
    ♥ Do have faith in what you're doing.