Übergeben Sie eine Liste an eine Funktion in Python

def someFunc(myList = [], *args):
    for x in myList:
        print x
Unusual Unicorn