circular printer program in python
Answers
Answered by
2
Answer:
elif( ((i==0 or i==row-1) and (j>0 and j<col-1))): print('*',end='') else: print(end=' ') #to print the space. print() #to change the line after iteration of inner loop. row =6 col=4 for i in range(0,row): for j in range(0,col): if((j == 0 or j == col-1) and (i!=
Explanation:
Hope this helped you.
Similar questions