# -*- coding: utf-8 -*-
"""
Created on Thu Sep 17 12:40:37 2020

@author: Sim
"""
#fcntest3.py
def spam(eggs):
    eggs.append(1)
    eggs = [2,3]
    print("eggs: ", eggs)

ham = [0]
spam(ham)
print("ham: ", ham)