/
IvanKhabarov
/
python
Обзор
Документация
Войти
/
IvanKhabarov
/
python
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Lections/Lesson3/Lists/methods/task_list_7.py
8 строк
214 B
Ivan Khabarov
Добавлены новые директории
05 сен 2024, 10:09
05 сен 2024, 10:09
010106d
Код
Авторство
О чём код?
# метод индекс my_list = [2, 4, 6, 2, 8, 10, 12, 2, 4, 14, 2] spam = my_list.index(4) print(spam) eggs = my_list.index(4, spam + 1, 90) print(eggs) err = my_list.index(3) # ValueError: 3 is not in list