'list' object is not callable
Добрый день, прохожу урок по python, про лямбды. Возможно сможете помочь)
https://beonmax.com/courses/python/lyambdy/
Почему то код такой показывает ошибку:
is_adault = lambda age: age>18
test_list = [1, 2, 20, 19, 21, 30]
list(filter(is_adault, test_list))
Ошибка:
TypeError Traceback (most recent call last)
<ipython-input-22-386d72b3c0ca> in <module>
4 test_list = [10, 12, 20, 17, 22]
5
----> 6 ret_list = list(filter(is_adault, test_list))
TypeError: 'list' object is not callable
Не совсем понимаю, почему он не воспринимает функцию list() .