python(四)1. 函数1.1 关键参数123456def demo(a, b, c=5): print(a, b, c)demo(3, 7)demo(c=8, a=9, b=1)
1.2 可变长度参数*p: 用来接收任意多个实
2021-11-27