| 1234567891011121314151617181920 | """Calculate resources koef"""def calc_koef(education_level):    """Calculate koef based on education"""    max_work_exp = 80000 + 200 * education_level    return pow(max_work_exp / 10, 0.6)def calc_education_koef(old_education, new_education):    """Calculate resource koef for eductaion"""    old_koef = calc_koef(old_education)    new_koef = calc_koef(new_education)    percentage = 100 / old_koef * new_koef    print("%8.2f%8.2f%8.2f" % (old_koef, new_koef, percentage))if __name__ == "__main__":    print("old new percentage")    calc_education_koef(30, 286)    calc_education_koef(286, 350)
 |