Python中的args和kwargs是什么?该如何使用?( 五 )

\n \n \n
  • def printThese(abc=None):   print(a \"is stored in a\")   print(b \"is stored in b\")   print(c \"is stored inc\")printThese(12)\"\"\"1 is stored in a2 is stored in bNone is stored in c\"\"\"

  • \n
\n \n \n

另外 , 这些可选参数也会成为可供选择的关键字 , 则此时可以规定函数调用参数名称并相应进行映射 。

\n \n

将三个变量默认值设为None , 然后看看如何在不考虑顺序的情况下进行映射 。

\n \n \n