假设我有一个如下的函数:
def splitter(*params):
rep, msg = params
if rep:
for i in range(rep):
print(i)
else:
print('-----------------------------------')
splitter(2,'Let the Game Begin!! 🏏')
现在,在上面的例子中,它会通过,因为我给出了参数,但是我想要的是,假设我不想在调用函数时给予参数,那么我怎么处理它呢?,因为**args*不能有默认值。
1条答案
按热度按时间puruo6ea1#
使用具有默认值的命名参数定义函数: