python 传递多个参数

def oper(a,*args):
        print(args)
        print(a)
oper("q","s","d","z","b","f")
原文地址:https://www.cnblogs.com/sea-stream/p/10617123.html