- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Python Continue Statement Explained | Skip Letters in a Loop
Description:
In this beginner Python tutorial, I show you how the continue statement works inside a for loop.
We build a simple program that asks the user for a word, then prints every letter except the letter “a”. This is a great way to understand how continue skips part of the loop and moves to the next item.
In this video you’ll learn:
• How for loops work in Python
• What the continue statement does
• How to skip certain values in a loop
• A simple beginner-friendly example
Code used in the video:
for letter in word:
if letter == “a”:
continue
print(letter)
#Python #PythonTutorial #PythonBeginner #ForLoop #continuestatement
Видео Python Continue Statement Explained | Skip Letters in a Loop канала CAPE AOC
In this beginner Python tutorial, I show you how the continue statement works inside a for loop.
We build a simple program that asks the user for a word, then prints every letter except the letter “a”. This is a great way to understand how continue skips part of the loop and moves to the next item.
In this video you’ll learn:
• How for loops work in Python
• What the continue statement does
• How to skip certain values in a loop
• A simple beginner-friendly example
Code used in the video:
for letter in word:
if letter == “a”:
continue
print(letter)
#Python #PythonTutorial #PythonBeginner #ForLoop #continuestatement
Видео Python Continue Statement Explained | Skip Letters in a Loop канала CAPE AOC
Комментарии отсутствуют
Информация о видео
8 апреля 2026 г. 20:54:53
00:03:18
Другие видео канала







