def(f1)
return “F1”
等同于 f= lambda f1: "F1"
冒号背后等同于return “F1”
为了代码简短,可用可不用
def x()
print(“xxx”)
x()#执行函数
print(x)#代指函数