Что выведится в консоль
def extend_list(val, lst=[]): lst.append(val) return lst print(extend_list(10)) print(extend_list(123,```