def a(x):
return x
print(a) #不带括号调用的结果:<function a at 0x1091766a8>
print(a(3)) #带括号调用的结果:3
1、不带括号时,调用的是这个函数本身
2、带括号(此时必须传入需要的参数),调用的是函数的return结果
参考:https://www.jianshu.com/p/5c7ee8104cdc
标签:调用,return,结果,Python,调用函数,括号,不带,print
来源: https://www.cnblogs.com/erchun/p/12890625.html