📜  * 在 python 中的函数中是什么意思 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:21.541000             🧑  作者: Mango

代码示例1
>>> numbers = [2, 1, 3, 4, 7]
>>> more_numbers = [*numbers, 11, 18]
>>> print(*more_numbers, sep=', ')
2, 1, 3, 4, 7, 11, 18