Ok so I made an easy script because I was lazy and just wanted to add my kilometers to it so that the needed info pops out... While I know changing the variables to int() gives me the correct info I need, without it I receive a weird output of which I do now know how it is created.. This is the script:
KMstandNu = 186645
KMsnaarhuisenterug = 18.7 * 2
KMnaarPascalenterug = 8.2 * 2
Wednesday2 = KMstandNu - KMsnaarhuisenterug
Wednesday1 = Wednesday2 - KMnaarPascalenterug
Tuesday2 = Wednesday1
Tuesday1 = Tuesday2 - KMnaarPascalenterug
print("22 oktober: " + str(Tuesday1) + " - " + str(Tuesday2))
print("23 oktober: " + str(Wednesday1) + " - " + str(Wednesday2))
output:
22 oktober: 186574.80000000002 - 186591.2
23 oktober: 186591.2 - 186607.6
Ok so which clever mind can help me out why Tuesday1 gets 9 zero's and a 2 behind the correct math???