Computer Science, asked by tclarisse, 8 months ago

Write a pseudo code to print the following shape
***
***
***

Answers

Answered by PSN03
3

______CODE_____

for i in range 0 to 2:   #loop 1

   for j in range 0 to 2:      #loop2

       print('*')

   print()   #comes to next line

________________

Hope this helps

Similar questions