Computer Science, asked by Lordwinsam914, 5 months ago

Write programs using nested loops to produce the following patterns :

2

4 4

6 6 6

8 8 8 8​

Answers

Answered by BetteRthenUhh
0

Answer:

2

4 4

6 6 6

8 8 8 8..........

Answered by Anonymous
0

Answer:

for a in range(2,9,2):

for b in range (1,a,2):

 print(a, end=' ')

print()

Explanation:

Similar questions