def fun(hoge=[]):
....print(hoge)
....hoge += ['C', 'D']

fun()
fun(['A', 'B'])
fun()
fun()