Rente

j = int(input("aantal jaar: "))
r = int(input("rente: "))
b = int(input("startbedrag: "))
f = b * (1 + r / 100)**j
print(f"Met een bedrag van € {b} en een rente van {r} % heb je na {j} jaar € {round(f)}.")

Mevrouw Leemans

aantal_personen = int(input("Aantal personen: "))
salaris = float(input("Salaris: "))
getrouwheid = input("Trouw: ")

r = 10
if salaris > 5000:
    r -= 3
elif salaris > 4000:
    r -= 2
elif salaris > 3500:
    r -= 1

if getrouwheid == "Ja":
    r -= 1

if aantal_personen == 2:
    r *= 0.8

print(round(r, 2))

Auto opkopen

a = int(input("aankoopprijs: "))
k = float(input("kilometerstand: "))
l = int(input("leeftijd: "))
mtm = int(input("mtm: "))
type = input("prive, lichte vracht of zware vracht: ")

if type == "zware vracht":
    print("Kopen wij niet op.")
elif type == "lichte vracht" and mtm > 3500:
    print("Deze specificaties zijn niet mogelijk.")
else:
    verlies = 1 - (k * 0.05 / 10000)
    if l > 30 and k < 50_000:
        l_delta = 2000
    elif l > 30:
        l_delta = 1000
    else:
        l_delta = -500*l
    p = max(a*verlies + l_delta, 0)
    print(f"Wij bieden € {p:.2f} voor uw voertuig.")

Prijselasticiteit van de vraag

q0 = int(input("q0: "))
q1 = int(input("q1: "))
vraagcurve = input("vraagcurve: ")

q = q0
p0 = eval(vraagcurve)
q = q1
p1 = eval(vraagcurve)

q_gem = 0.5 * (q0 + q1)
p_gem = 0.5 * (p1 + p0)

e = ((q1 - q0) / q_gem) / ((p1 - p0) / p_gem)
print(f"De prijselasticiteitscoëfficient is: {round(e, 1)}")