📌  相关文章
📜  接受 1 个位置参数,但给定了 2 个 python 代码示例

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

代码示例3
#Positional arguments are the amount of arguments passed through a function
#For example

def function(value1, value2):
    print(value1)
    print(value2)

function("value1","value2","value3")