while - Schleife

while1.py
n=1
while n <= 10:
        print n
        n=n+1
while2.py
n=10
while n >= 0:
        print n
        n=n-1