mock
_sobes
Темы
Войти
Регистрация
Темы
Войти
Регистрация
← все темы
Debug — найди ошибку в коде (разные языки)
debug-tasks
🎴 Пройти квиз
Фильтры:
все
junior
middle
senior
staff
·
theory
mcq
code
design
debug
eli5
case
correct_vs_wrong
code_explain
quiz
1 вопросов
junior
debug
Найди баг и объясни почему: ```python def append_to(item, lst=[]): lst.append(item) return lst print(append_to(1)) # ожидаем [1] print(append_to(2))…