while Loop with else in Python

preview_player
Показать описание
Python Programming: while Loop with else in Python
Topics discussed:
1. Introduction to while Loop with else.
2. Use of while Loop with else.

Music:
Axol x Alex Skrindo - You [NCS Release]

#PythonByNeso #PythonProgramming #WhileLoopWithElse
Рекомендации по теме
Комментарии
Автор

Thank your for the video!
I am currently learning in my college c++ and python from u

PremKumar.S-itet
Автор

Great explanation sir.. Take a bow..❤ I want to learn OOPS in python from you.. could you please make videos on it..

alisheik
Автор

Nice video sir, while else was confusing at first but understood it after I watched it multiple times. Thanks sir

yatinshekhar
Автор

I have actually had the program question and tried to write my own code. Below is my code:
fruits = ['orange', 'banana', 'mango', 'orange']
i = 0
length = len(fruits)
temp = 0
#print(length)
while i < length:
if fruits[i] == 'orange':
temp = 1
i += 1
else:
if temp == 0:
print("Orange is not present in the list")
else:
print("Orange is present in the list")

But, I was really amazed of seeing how while with else has reduce the lines of code and our pain too!!!

Thank you very much for this useful content!

venkatraman_padmanaban
Автор

Please notice me sir! I really love your explanation. You really elaborated kt clearly to the point that event a monkey like me ca understand. This video helped me understand about while loops and its concept. So I thank you

kaneki
Автор

When are you planing of making videos on Object Oriented Programing in Python
Thank You

tonykay
Автор

teacher what of using this way to solve the question?

fruits = ["apple", "banana", "mango", "strawberry"]
while "orange" in fruits:

print(True)
break
else:
print("False")

isaacodunaike
Автор

can't we write it like this:

fruits = ['apple', 'banana', 'mango', 'strawberry', 'orange']

while 'orange' in fruits:
print ('Orange is available')
break
else:
print ('Orange is not available!')

tayyab.sheikh
Автор

sir ekse aage ka video kha h sir ji
plz upload this

thirdeyegaming