推荐学习书目
› 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 · May 18, 2013 · 5514 views
    This topic created in 4878 days ago, the information mentioned may be changed or developed.
    比如 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 replies  •  1970-01-01 08:00:00 +08:00
    yuelang85
        1
    yuelang85  
       May 18, 2013
    我觉得是没有必要
    swulling
        2
    swulling  
       May 18, 2013
    do--while能做的while也能做,没必要
    yakczh
        3
    yakczh  
    OP
       May 18, 2013
    @swulling 但是要把循环体内的判断条件在外面再写一遍,明显没有do { }while简单

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

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

    do...while和while...do能完成的事情几乎是一样的,所以作者作者觉得没必要增加another while...do吧。
    b1074549
        9
    b1074549  
       May 19, 2013
    do while会降低可读性,在别的语言里也是不建议用的
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   2762 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 13:27 · PVG 21:27 · LAX 06:27 · JFK 09:27
    ♥ Do have faith in what you're doing.