why no "do : until"?
Bjorn Pettersen
pbjorn at uswest.net
Fri Dec 29 23:52:21 EST 2000
More information about the Python-list mailing list
Fri Dec 29 23:52:21 EST 2000
- Previous message (by thread): why no "do : until"?
- Next message (by thread): why no "do : until"?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
henry_crun3583 at my-deja.com wrote: > Can someone point me at an explanation of the logic for not having > do: > until > > or explain the elegant way to achieve this in Python. > > eg > do : > R=Themistor.ReadResistance() > T=R_to_Temperature(R) > until (T >=25) while 1: R=Themistor.ReadResistance() T=R_to_Temperature(R) if T >=25: break
- Previous message (by thread): why no "do : until"?
- Next message (by thread): why no "do : until"?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list