def wai(x): def nei(y): return x * y return nei i = wai(3) print(i,type(i)) print(i(6))
人生在与折腾、在于学习、在于进步