in ,

sneakyPython

sneakyPython | python-memes, list-memes | ProgrammerHumor.io
python-memes, list-memes | ProgrammerHumor.io

Content

def appendto(element, to): to.append (element) return to mylist appendto (12) print (mylist) myotherlist appendto (42) print(myotherlist) 12 12, 42