Lecture 5 : Loops in Python | While & For Loops | Python Full Course

preview_player
Показать описание
This lecture was made with a lot of love❤️

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

00:01 Chapter Five covers details about for and while loops in Python
02:30 Introduction to while loops in Python
06:29 Loops in Python help to repeat a set of instructions until a specific condition is met.
08:30 Loops are used to execute a set of statements multiple times
12:42 Using loops in Python to print numbers from 1 to 100 and in reverse order
14:53 Printing multiplication table using loops in Python
18:52 Printing multiplication tables and looping through a list in Python.
21:04 Using loops to iterate through lists and tuples
24:58 Understanding loops in Python
26:53 Explaining the process of searching in Python using loops
30:44 Understanding the break keyword in Python loops
32:38 Using loops in Python to search and print a number
36:28 For loops are used for sequential traversal of elements in a sequence.
38:08 For loop in Python iterates over a sequence of elements.
42:06 Using for loop for iterating through a string
44:11 Using for loops in Python to iterate through elements and track their index.
48:14 Using range function to iterate through sequences.
50:03 Loops in Python allow for iteration with conditions and step sizes.
53:59 Understanding the usage of 'pass' statement in loops.
55:51 Loops in Python are essential for executing repetitive tasks.
59:39 Factorial calculation using For Loop in Python
1:01:46 Understanding while and for loops in Python

tooclose
Автор

mam love from village ❤

while True:
print("Did you understand the whole lecture on while, for, range, continue, break, and pass?")
stu = input("Enter 'yes' or 'no': ").lower()

if stu == 'yes':
print("Congratulations! You are the father of coding!")
break
elif stu == 'no':
print("Moye Moye! You are a looser. Keep practicing!")
break
else:
print("Invalid input. Please enter 'yes' or 'no'.")

vikk
Автор

Practice aspects after the demonstration are highly appreciable.

dr.mohdaamir
Автор

Thanks a lot Shraddha Mam🌟.A well suited contents I have got from this lecture. I stated learning python in 2k24 and in the month of April✨️. Have a good life ahead.

nikhilkumarsingh
Автор

shradha you are a star. I tried to learn from so many other YouTube videos but their way of teaching was so complex, however, you explained the topic of LOOP in detail and in simplified ways resulting in understanding it so well. Thank you so much and God bless.

sabirkhan-ff
Автор

Vote for Next Course On ' ' ' JAVA' ' '❤

sakhiop
Автор

Thankyou mam for giving this python course free of cost❤

ImRich-xocm
Автор

#solution

a = 1
while(a<=100):
print(a)
a+=1

JatinJangid-xy
Автор

The way of teaching is too osm ..what a effort mam thanku so much for the great ful vedeos with free of cost

Namaskarji_
Автор

more specified multiplication table.

n=int(input("enter any number you wish to print the multiplication table"))
i= 1
while i<=10:

i= i+1

rabinsdhi-mvpt
Автор

n = int(input("Enter a number of n: ->> "))
i = 1
while i <= 10:
mul = n * i
print(mul)
i += 1

allphotoshoptutorials
Автор

You are such a great teacher.
I have learn HTML CSS JS from your videos and
very excited to learn Python. love from Karachi, PAKISTAN.

AmnaNaseer-
Автор

This series is great and has helped me learn Python from scratch. Please after completing this series make some videos for Python libraries like NumPy, Pandas, Matplotlib, Scikit, etc. This will help lots of students who wants to learn more about Python.

adarshgupta
Автор

#solution


num = int(input("enter number"))
i = 1
while(i<=10):
print( num*i )
i+=1

JatinJangid-xy
Автор

In this 5 series, loops series are amazing 😊

pritamnoob
Автор

My ideas regarding loop got absolutely clear after watching this much informative and clearly justified

sounaksarkar
Автор

great learning with great teacher like you, thanks for this course

afaqueabbasi
Автор

Impressive! Your fluency in computer languages and teaching skills are top-notch. Your detailed explanations are truly impressive and I find your teaching style to be the best. Keep up the amazing work and please continue creating such informative videos in the future. You're a rockstar!

narendralimbu
Автор

n=int(input("enter the number "))
fact=1
for i in range(n, 0, -1):
fact=fact*i
print(fact)
alternate code for factorial
thanks for the lecture ma'am🙏

adityaralhan
Автор

thanks didi you taught really well for understand me loops in few days back i have
not understand loops but your teaching concept is really good

starbonegaming