cara menambahkan ke variabel dalam loop untuk


n = 5
while n > 0:
    print n
    n = n-1
print 'Blastoff!'
Worrisome Willet