用modify函数 把列表中的工资提高20%工资:【300 350 280 500 420】
def modify(lst): for i in range(len(lst)): lst[i]*=1.2