while - Schleife


#!/usr/bin/python2.2
def schleife(a):
i=0
while i < a:
print i
i=i+1

schleife(5)