i have a code as seen below but i didn't understand what is the meaning of 3.2f
in the last two lines. can somebody help me about this situation?
km_start = int(input("insert beginning kilometers: "))
km_stop = int(input("insert ending kilometers: "))
working_days = int(input("insert the number of working days: "))
km_home_work = int(input("insert the home-work discance: "))
km_total = km_stop - km_start
km_work = working_days * (km_home_work *2)
km_not_work = km_total - km_work
km_work = 100 * (km_work/km_total)
km_not_work = 100 * (km_not_work/km_total)
print(10*"-")
print(f"car used for work activities: {km_work:3.2f} %")
print(f"car used for not work activities: {km_not_work:3.2f} %")