Computer Science, asked by udaychanpa635, 6 months ago

write a program to print the following
5555
5555
5555
5555

Answers

Answered by anindyaadhikari13
1

Question:-

Write a program to print the following.

5555

5555

5555

5555

Program:-

This is written in python.

for i in range(0,4):

for j in range(0,4):

print("5",end="")

print()

Similar questions