Python Count от одного до десяти

count = 100
while count > 0 :
    print(count)
    count = count - 1
Impossible Ibex