WHILE SCHLEIFE
i=0
n=10
while i0:  # von 20 bis 1, 
	print(i)
	i=i-3

i=20
while i>0:  # von 20 bis 1, aber Schrittweite 3
	print(i)
	i=i-3


for Schleife
Python Mathematische Funktionen