Python in Kannada - While Loops | Break and Continue| Nested Loops | Full Course for Beginners - # 9

preview_player
Показать описание
Welcome to the ninth part of the Python Full Course for Beginners in Kannada! Through this series on Engineering in Kannada, I'm teaching Python from scratch in Kannada to help you build a strong foundation.

Loops are essential for repeating tasks and controlling the flow of your programs. In this video, I explain all of these concepts in Kannada, so you can master them easily.
While Loops: Understand how to repeat a block of code as long as a condition is true.
Break Statement: Learn how to exit a loop early when certain conditions are met.
Continue Statement: Discover how to skip the rest of a loop iteration and move to the next one.
Nested Loops: Explore how to use loops inside other loops for more complex iterations and patterns.

✨ RESOURCES ✨

✨ JOIN OUR COMMUNITY ✨
2. Use links in Instagram account Bio to get access to WhatsApp and Telegram community

✨ TIMESTAMPS ✨

Introduction - 00:00
What are Loops in Python- 2:30
While loop in Kannada - 3:20
Break statement - 13:00
Continue statement - 15:35
Nested while loops - 21:45
Take user input using while loops - 27:13

Thanks for Watching!

#pythonkannada #engineeringinkannada #fullcourse #python #programming #codinginkannada
Рекомендации по теме
Комментарии
Автор

Never understood this much clearance about while loops in my 3 years engineering
Super bro thanks for ur efforts...

Chandana_m
Автор

Iam in 1st sem they started python iam well understanding because of your videos thank you so much for being backbone for my career ❤

RD_gamer
Автор

Nan favorite motivation Andre " idre nemdiyag irbeku life alli " 😂, the class is very interesting and informative bro, thanku so much ❤. Waiting for next class 😊

googlyappu
Автор

Anna u boosting my confidence and I feel happy for learning concepts everyday ❣️

VEERESHHIREMATH-djri
Автор

Thanks Chandan, hoping, this journey of my python will lead to get a job for me soon..

NimmaHuduga-ye
Автор

💥# 2.HOMEWORK
i=0
while i<=20:#CONDITION
if i%2!=0:#CHECKS ODD NUMBER
print(i)
i+=1

krishnan
Автор

I am present guru with lot of interest.... because of your support and motivation now I am mentally very strong that's why today I speak very strongly in english on the stage and infront of all the people

PoojaBayappagol
Автор

Keeping going brother right now i am studying in 12th pcmb as soon as i complete my exams i will watch all the episodes but pls keep uploading ❤

batman_jod
Автор

Your teaching is very good Brother ❤️🙏

sangeetasngeeta
Автор

ATM Example kalthu sikkapatte kushi aythu🎉

NayanaHanwal
Автор

💥#1. HOMEWORK
i=1
while i<=10:#condition
print(i)#prints 1 to 10
i+=1#increment

krishnan
Автор

This class confusing for me but I never give up 😊

LearnwithScience-rx
Автор

Never give 😊 I solve so many problems on this topic...

SavitaChougala-gi
Автор

Home Work: 01 Code

i=1
while i<=10:
print(i)
i+=1

sachinrai
Автор

Present sir....
Thank u so much sir ...😊❤

sindubanavasi
Автор

# Program to print Diamond using While Loop
# Number of rows for the upper half of the diamond
rows = 5
i = 1

# Upper part of the diamond
while i <= rows:
# Print spaces
print(" " * (rows - i) + "*" * (2 * i - 1))
i += 1

# Lower part of the diamond
i = rows - 1
while i >= 1:
# Print spaces
print(" " * (rows - i) + "*" * (2 * i - 1))
i -= 1

pareekshitapargi
Автор

Present anna
Thank you for your efforts

Shruti
Автор

💥# 4.HOMEWORK
i=10
while i>=1:
print(i)
i-=1
print('"Happy New Year!"')

krishnan
Автор

home Work 04: Code

countdown = 10

while countdown > 0:
print(countdown)
countdown -= 1

print("Happy New Year!")

sachinrai
Автор

💥# 3.HOMEWORK
i=1
print("Total no of seats are 8 seats")
while i<=8:
print(f"{i} Seat is booked")
i+=1
print('"All seats are Booked"')

krishnan