Computer Science, asked by pleasantcookies, 7 months ago

Write a program to generate this pattern for n lines: # # # # # # # # # # # #

Answers

Answered by AleemZaman07
1
Using python
Print(############)
Answered by salick
0

n = int(input("Enter a no. ")

for i in range(n):

print("############")

i=i+1

Similar questions