前置知识 Python 函数:https://www.cnblogs.com/poloyy/p/15092393.html 什么是仅限位置形参 仅限位置形参是 Python 3.8 才有的新特性 新增了一个函数形参语法 / 添加了它,表示函数形参只能通过位置参数传递,而不能通过关键字参数形式传递 仅限位置形参栗子 def test1(a, b, c): print(a, b, c) test1(a=1, b=2, c=3) def test(a, /, b, c): print(a, b, c)…