
Aug. 4, 2023
8:18 a.m.
Currently in Python we have construction like this: tt = 5 while t: # do something tt -= 1 It would be great if in Python we have something like this: tt = 5 while (tt--): # do something It is exists in C++. And in my opinion it is very Pythonic