Part 11 | Python Nested Loop | Python Malayalam Tutorial Series

preview_player
Показать описание
This is the eleventh video of our "Python Malayalam Tutorial Series". In this tutorial, we are explaining more about python nested loop

Python Malayalam Tutorial Series:

Installation :

Part 1:

Part 2:

Part 3:

Part 4:

Part 5:

Part 6:

Part 7:

Part 8:

Part 9:

Part 10:

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

rows = 5
columns = 5

# Initialize row counter
i = 0

# Outer loop for rows
while i < rows:
# Inner loop for columns
j = 0
while j < columns:
print("a", end=" ")
j += 1
# Move to the next line after printing a row
print()
i += 1

rahulayambara
Автор

rows = 5

# Initialize row counter
i = 0

# Outer loop for rows
while i < rows:
# Inner loop for printing "a" in the pattern
j = 0
while j <= i:
print("a", end=" ")
j += 1
# Move to the next line after printing a row
print()
i += 1

rahulayambara
Автор

A A A A A A A A A A
A A A A A A A A A
A A A A A A A A
A A A A A A A
A A A A A A
A A A A A
A A A A
A A A
A A
A
A
A A
A A A
A A A A
A A A A A
A A A A A A
A A A A A A A
A A A A A A A A
A A A A A A A A A
A A A A A A A A A A
A
A A
A A A
A A A A
A A A A A
A A A A A A
A A A A A A A
A A A A A A A A
A A A A A A A A A
A A A A A A A A A A
A A A A A A A A A A
A A A A A A A A A
A A A A A A A A
A A A A A A A
A A A A A A
A A A A A
A A A A
A A A
A A
A

small experiment🤩🤩. thank you for the classes. Go Ahead

AlwinDominicalandominic
welcome to shbcf.ru