Nested Loops with Examples in Python | Python Tutorial in Hindi 15

preview_player
Показать описание
nested loops with Examples in Python - 15

➖➖➖➖➖➖➖➖➖➖➖➖➖
❤️Do Like, Share and Comment ❤️

➖➖➖➖➖➖➖➖➖➖➖➖➖
📣Want to connect with me? Check out these links:📣

➖➖➖➖➖➖➖➖➖➖➖➖➖
⭐Content⭐
✅ 00:00 nested loops
✅ 02:08 nested loops examples
✅ 10:28 nested loops interview question

➖➖➖➖➖➖➖➖➖➖➖➖➖
Related videos:

⭐Introduction to Python Programming | Python Tutorial in Hindi 1:

📢Python Project for Data Analysis:

📢Full SQL Tutorial in One Video:

📢Full Excel Tutorial in one Video:

📢Full Power Bi + Tutorial in one Video:

🔖Complete Data Analyst Roadmap:

➖➖➖➖➖➖➖➖➖➖➖➖➖
Hope you liked this video and learned something new :)
See you in next video, until then Bye-Bye! :)

Keep learning n Keep Growing 🚀
Рекомендации по теме
Комментарии
Автор

Thank you so much bro ❤
Best explanation
Appreciate it 👍

Really helped me❤❤

DevanshSahu-qojg
Автор

Thanks Bhai Bahut majaa aa raha hai python series mein each topic aapne in depth mein samjhaya ek request hai jaise 15:35 se 16:42 tak aapne values ke sath samjhaya aise hi complicate code mein teem step values ke sath samjhaa doge to koi doubt ka sawaal hi nahi reh jayega bahut accha tarika hai ye. I appreciate. baaki user input ke sath ye hai solution.

a = int(input("Enter the number :"))
b = int(input("Enter the number :"))
for num in range(a, b):
for i in range(2, num):
if num % i == 0:
break
else:
print(num)

ankitBhartiya
Автор

sir we all know that 1 is not a prime number so what is the point we start the range from 1 we can just start it with 2 in our code then take the user input that till what number you want the prime number

devankverma
Автор

Thank you so much for giving this video early. I really wait for your python videos.

tanvirahmed
Автор

while True:
user_number = int(input("Enter a number: "))

if user_number < 2:
print("Not prime")
else:
for i in range(2, user_number):
if user_number % i == 0:
print("Not prime")
break
else:
print("Prime")

print("Do you want to continue?")
if input("yes/no: ").lower() != "yes":
break

alfasams
Автор

i think apna college and code with harry now become overrated
and i found the best channel to learn python

akarshmishra
Автор

File Input/Output and OOPs are important for data analyst

PravinKumar-iolu
Автор

x = "1"
y = "2"
z = x + y
x = z + y
why are not run vscode?

RajGupta-tn
Автор

Hello sir. Can u give a rough estimation of how many videos/topics are left after this one.

moonchild
Автор

Sir as beginner mujhe kitne difficulty ke questions aane chahiye in SQL for data analystics?

I can easily solve your video excercises but when I try to solve on leetcode i unable to solve easy questions as well on leetcode

Because leetcode ke easy questions bhi tricky and hard hote hai


Any suggestions sir?

sahid_parvej
Автор

Hey sir can i apply for data analyst internships now? I'm in intermediate level of PostgreSQL, excel and power BI.

deepakbisht
Автор

hii Rishab, kindly make Adavnce level power-bi course

Dharma-jagoio
Автор

Here is the answer to the homework question-

a = int(input("Enter a number from where you want to check the prime number: "))
b = int(input("Now enter the number till where you want to check the prime number: "))
for num in range(a, b):
for i in range(2, num):
if num % i ==0:
break
else:
print(num)

praveensb-pz
Автор

Can you please explain me for num = 9 ?

HritikGhorpade-kncd
Автор

a = 2
b = 15

for num in range(a, b):
for i in range(2, num):
if num % i == 0:
break
else:
print(num)
3
5
7
11
13

indiaisthebestcountry
visit shbcf.ru