Function Python

def f(x, y=None):
    if y is None: y = []
    y.append(x)
    return y
print f(23)