Skip to main content


last python class today and I was finally able to do the homework:

def schneeflocken (anzahl):
schnee="*"*anzahl
return schnee

anzahl=int(input("wieviele schneeflocken willst du sehen?"))

while anzahl>0:
ergebnis=schneeflocken(anzahl)
print(ergebnis)
anzahl=int(input("wieviele schneeflocken willst du sehen?"))

print("wann wird es wieder richtig sommer?")