You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
184 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

add=lambda a,b:a+b#将lambda函数赋值给一个变量通过这个变量间接调用该lambda函数。
print(add(3,4))
#还可以这样使用:
print((lambda a,b:a+b)(3,4))