python中的lambda函数与变量的问题

2024-11-30 11:51:35
推荐回答(1个)
回答1:

>>> def p(x):
print(x)

>>> g=10
>>> m=lambda x=g:p(x)
>>> del(g)
>>> m()
10
>>>

这个绝对可以了