wuya

  • 函数学习

    def add(a,b): print(a+b) add(3,2) 结果:5 def add(a,b=6): print(a+b) add(a=3) 结果:9 return 返回值…

    编程笔记 2022年6月21日