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))