我怎么能写一个相当于的lambda表达式:
def x(): raise Exception()
以下是不允许的:
y = lambda : raise Exception()
python
python ×1