passer une liste à une fonction dans Python

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