
def change(L):
    L.append( 4 )

def main():
    x = [1, 2, 3]
    change(x)
    print x

main()
