#def 关键字 #参数,就是函数里边会用到的东西 #可复用的东西 #return 函数的返回值 没有的话就是返回return None def add(a,b): return a+b tmp=add(5,3) print(tmp)