print('Wat is je naam?')
naam = input()
i = 1
while i <= 7:
print(naam)
i += 1
i = 1
while i <= 13:
print('Ik hou niet van herhaling!!')
i += 1
i = 1
som = 0
while i <= 6:
print('Geef een getal')
getal = int(input())
if getal == 0:
break
else:
som += getal
i += 1
print('De totale som is', som)
print('Ik ben geboren in', 2006)
i = 1
while i <= 10:
print('In', 2006+i, 'was ik', i,'jaar')
i += 1
x = 10
while x > 0:
print(x)
x -= 1
print('Geef x')
x = int(input())
print('Geef n')
n = int(input())
macht = 1
while n > 0:
macht *= x
n -= 1
print(macht)
i = 1
while i <= 10:
if i % 2 != 0:
print(i)
i += 1
i = 1
while i <= 10:
print(i)
i += 2
som = 0
while True:
print('Geef een getal (of 0 om te stoppen)')
n = int(input())
som += n
if n == 0:
break
print('De totale som is', som)
i=1
while i < 16:
i *= 2
print(i)
import random
i = 0
while i < 3:
print('kop of munt?')
x = random.choice(('kop','munt'))
antwoord = input()
i += 1
if antwoord == x:
print('Goedzo!')
elif antwoord == 'kop' or antwoord == 'munt' :
print('Helaas!')
else:
print('Stop het spel')
break
import random
win = 0
lose = 0
i = 0
while i < 3:
print('kop of munt?')
x = random.choice(('kop','munt'))
i += 1
antwoord = input()
if antwoord == x:
print('Goedzo!')
win += 1
elif antwoord == 'kop' or antwoord == 'munt':
print('Helaas!')
lose += 1
else:
print('Stop het spel')
break
total = win + lose
print('Je won', win, 'van de', total, 'keer.')
n = int(input("n: "))
f1 = 0
f2 = 1
while n >= f1:
print(f1)
_f = f2
f2 = f1 + f2
f1 = _f
else:
print(f1)