Lewati daftar ke fungsi di Python

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