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
yakczh
V2EX  ›  Python

python没有do { } while结果是不是因为缩进不好处理?

  •  
  •   yakczh · 2013-05-18 22:33:29 +08:00 · 4110 次点击
    这是一个创建于 3967 天前的主题,其中的信息可能已经有所发展或是发生改变。
    比如 do:
    xx
    while (condition)

    明显头重脚轻,跟优雅的原则相冲突,干脆上来就while True


    象正则搜索字符中的代码得写成这样
    <pre>
    index=0
    list=[]
    while True:
    m=p.search(text,index)
    if m==None:
    break
    match= m.groups()
      .... 
    index= m.end()
    </pre>
    9 条回复    1970-01-01 08:00:00 +08:00
    yuelang85
        1
    yuelang85  
       2013-05-18 22:34:12 +08:00
    我觉得是没有必要
    swulling
        2
    swulling  
       2013-05-18 22:36:46 +08:00
    do--while能做的while也能做,没必要
    yakczh
        3
    yakczh  
    OP
       2013-05-18 22:59:17 +08:00
    @swulling 但是要把循环体内的判断条件在外面再写一遍,明显没有do { }while简单

    如果能做没必要,for循环能做的While也能做
    VYSE
        5
    VYSE  
       2013-05-19 02:24:03 +08:00
    跟switch一样,作者不会加这种语法的,这也是python的特色
    Golevka
        6
    Golevka  
       2013-05-19 02:31:02 +08:00
    break就蛮好的, 写Perl代码时我也更喜欢last而非do .. until
    savingralf
        7
    savingralf  
       2013-05-19 06:47:08 +08:00
    @swulling 不知道怎么认为do-while/while-do一样了?
    do {
    ...
    } while (false);

    while (false) {
    ...
    }
    teloon
        8
    teloon  
       2013-05-19 14:17:48 +08:00
    python的一个哲学是:每件事情只有一种(或少量)实现就够了。这也是很多新手发现python好学的一个原因。

    do...while和while...do能完成的事情几乎是一样的,所以作者作者觉得没必要增加another while...do吧。
    b1074549
        9
    b1074549  
       2013-05-19 19:06:33 +08:00
    do while会降低可读性,在别的语言里也是不建议用的
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1400 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 17:31 · PVG 01:31 · LAX 10:31 · JFK 13:31
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.