Variabelen

getal_1 = int(input('getal 1: '))
getal_2 = int(input('getal 2: '))
som = getal_1 + getal_2
print(som)

Condities

x_co = int(input('Geef x-co van de sprite: '))
y_co = int(input('Geef y-co van de sprite: '))
snelheid = int(input('Geef de snelheid van de sprite: '))
afstand_tot_muisaanwijzer = int(input('Geef de afstand van de sprite tot de muisaanwijzer: '))

if afstand_tot_muisaanwijzer < 5:
    x_co, y_co, snelheid = 0, 0, 0
elif afstand_tot_muisaanwijzer < 10 and snelheid > 30:
    snelheid /= 2
else:
    snelheid += 3

print('x = ', x_co, 'y = ', y_co, 'snelheid = ', snelheid)

For-lus

grootte = int(input('Grootte: '))
stapjes = int(input('Stapjes: '))

for i in range(stapjes):
    grootte *= 0.5

print(grootte)

While-lus

huidig_volume = float(input('huidig: '))
max_volume = float(input('max: '))
stapjes = 0

while huidig_volume < max_volume:
    huidig_volume += (huidig_volume * 0.1)
    stapjes += 1

print('In {} stapjes, werd het volume {:.5f}'.format(stapjes, huidig_volume))

Lijsten

dieren = ['hond', 'kat', 'goudvis', 'hamster', 'vink']
score = 0

dier = input('dier: ')
while dier in dieren:
    score += 1
    dier = input('dier: ')

print(score)

Functies

def toegang(lengte, begeleid):
    heeft_toegang = False
    if lengte > 1.30 or (lengte > 1.25 and begeleid):
        heeft_toegang = True
    return heeft_toegang