Content
def appendto(element, to): to.append (element) return to mylist appendto (12) print (mylist) myotherlist appendto (42) print(myotherlist) 12 12, 42
HTTP 418: I'm a teapot
The server identifies as a teapot now and is on a tea break, brb
HTTP 418: I'm a teapot
The server identifies as a teapot now and is on a tea break, brb
def appendto(element, to): to.append (element) return to mylist appendto (12) print (mylist) myotherlist appendto (42) print(myotherlist) 12 12, 42