为什么报错啊?
你的变量和参数中没有名为name的变量,当然报错。
尝试使用如下代码:
def haha(*args): print('想跟%s去%s玩在%s年'% args) haha('pp','china',2021)