I have an input and then a loop that outputs 5 numbers I want to use in another function but I don't have any clue how to do this as I am a beginner.
mass_of_rider_kg = float(input('input mass of rider in kilograms:'))
a = mass_of_rider_kg
while a < mass_of_rider_kg+16:
a = a + 4
print(a)
This gives me the numbers I want but I am unsure how to put each of them into another equation to get 5 results.