[SOLUTION] Intermediate Nested Loops | Class 30 | Python (Core & Advance) Course

preview_player
Показать описание
Welcome to the Python (Core & Advance) course! Whether you're a beginner or looking to advance your skills, this comprehensive playlist will guide you through Python programming from the fundamentals to advanced concepts.

🚀 Enroll in the Full Free Course along with resources/notes/assignments and much more:

Login with phone number 👆 and you will be able to access it for free.

🔗 Connect with Us:

📁 Course Materials:

📣 Stay Updated:
Subscribe for more tutorials: @codeanddebug

📧 For Inquiries:

🙏 Thank you for learning!
Рекомендации по теме
Комментарии
Автор

Thankyou Sir 💙excellent 🌼explanation in simple way 🌺🌠

ashutiwari
Автор

Q78.
*
* *
* * *
* * * *
* * * * *


Answer:
for i in range(1, 6):
for j in range(1, i+1):
print('*', end=" ")
print()

ashishvats
Автор

Q.80

for i in range(5, 0, -1):
for j in range(5, i+5):
print(i, end=" ")
print()

rgurdarshsingh
Автор

#83
num=1
for i in range(0, 5):
for j in range(0, i+1):
print(num, end = ' ')
num=num+1
print("")

MahmoodNawazKhan-jy
Автор

counter = 1
for i in range(1, 6):
for j in range(i):
print(counter, end=" ")
counter += 1
print()

M_Bilal_
Автор

Bro keep up the good work, I follow all Ua videos

RohitKapapa
Автор

Q83.
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15

Answer:
current_number = 1
for i in range(1, 6):
for j in range(i):
print(current_number, end=" ")
current_number += 1
print()

ashishvats
Автор

Bhaiya course follow kar rahu bus all set.

fanoygamer
Автор

Bro can you make videos on SQL as well ?

AshramSubba
Автор

Just started following this course but if you will stop to upload lectures in that case it can be risky for me

MS_Raunak
Автор

It will be more helpful if u just create of full video like one shot video of 10 to 12hrs like that complete course + logic building

ubaidulla
Автор

Python ma DSA bhe leetcode questions ku ki python ma DSA bhut Kam hai 😊

BitsAndBytesAI
Автор

Q.80

for i in range(5, 0, -1):
for j in range(5, 5-i, -1):
print(i, end=" ")
print()

soumyajitmajumder
Автор

Q. 84
for i in range(1, 6):
for j in range(i, 0, -1):
print(j, end=" ")
print("")

alok
welcome to shbcf.ru