发布网友 发布时间:2022-04-29 17:43
共1个回答
热心网友 时间:2022-04-18 20:33
t_list=['m1','m2','m3']def show_maagicians(L): for i in t_list: print(i) return show_maagicians(t_list) def make_great(L): for i in range(len(L)): L[i]='the Great '+L[i] return make_great(t_list)show_maagicians(t_list)