[SOLUTION] Basic Nested Loops | Class 29 | 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!
Рекомендации по теме
Комментарии
Автор

Q71.
num=int(input("Enter number of lines: "))
for i in range(1, num+1):
for j in range(1, 6):
print(i, end=' ')
print()

laxmimuppasani
Автор

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

kiranpandagale-vs
Автор

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

rgurdarshsingh
Автор

Q.72
n=int(input("enter number of lines= " ")
for i in range(n, 0, -1):
for j in range(5, 0, -1):
print(i, end= " " )
print()

sumerakhan-
welcome to shbcf.ru