问题: This question already has answers here : 这个问题已经在这里有了答案 : What does ** (double star/asterisk) and * (star/asterisk) do for parameters? **(双星号/星号)和*(星号/星号)对参数有什么作用? (19 answers) (19个回答) Closed 6 years ago . 6年前 关闭。 So I have difficulty with the concept of *args and **kwargs . 所以我很难理解 *args 和 **kwargs 的概念。 So far I have learned that: 到目前为止,我已经了解到: *args = list of arguments - as positional arguments *args =参数列表-作为位置参数 **kwargs = dictionary - whose keys become separate keyword arguments and the values become values of these arguments. **kwargs =字典-其键成为单独的关键字参数,而值则成为这些参数的值。 I don't understand