1)for 循環 和range()函數:
def worker_salary(target_salary, increase_per_month): money_all_he_got = [] for each_month_salary in range(0, target_salary, increase_per_month): 2)while循環def worker_salary(target_salary, increase_per_month): each_month_salary = 0 money_all_he_got = [] while each_month_salary < target_salary: print "At the moment, his each salary is %d" % each_month_salary money_all_he_got.append(each_month_salary) each_month_salary += increase_per_month print "the money he has now, is:", money_all_he_got return money_all_he_gotprint "/there's min's salary information"target_salary = 5increase_per_month = 1ming = worker_salary(target_salary, increase_per_month)新聞熱點
疑難解答