On Fri, May 11, 2018 at 7:10 PM, Gregory Ewing <[email protected]> wrote: > I suggest adding a new builtin constant: > > YouFeelLikeIt = True > > Then all pseudo-infinite loops can be written > > while YouFeelLikeIt: > ... >
Personally, I prefer to use string literals.
while "you feel like it":
...
Which, in a non-joking context, tends to look like this:
while "moar data":
data = get_data()
process_data(data)
ChrisA
--
https://mail.python.org/mailman/listinfo/python-list
