Sedangkan tidak perintah dalam python

condition = 3

while not (condition == 0) :
   print(condition)
   condition = condition - 1
Grumpy Goldfinch