Write a Python program to print repeated character pattern or alphabets pattern in each row using for loop.
rows = int(input("Enter Repeated Characters in each Row Pattern Rows = ")) print("====Repeated Characters/Alphabets in each Row Pattern====") alphabet = 65 for i in range(0, rows): for j in range(0, i + 1): print('%c' %alphabet, end = ' ') alphabet = alphabet + 1 print()
This example displays the right triangle pattern of repeated characters in each row pattern using a while loop.
rows = int(input("Enter Rows = "))
print("====Repeated Characters/Alphabets in each Row Pattern====")
alphabet = 65
i = 0
while(i < rows):
j = 0
while(j <= i):
print('%c' %alphabet, end = ' ')
j = j + 1
alphabet = alphabet + 1
print()
i = i + 1
Enter Rows = 12
====Repeated Characters/Alphabets in each Row Pattern====
A
B B
C C C
D D D D
E E E E E
F F F F F F
G G G G G G G
H H H H H H H H
I I I I I I I I I
J J J J J J J J J J
K K K K K K K K K K K
L L L L L L L L L L L L