Hollow Square of Stars Printing Python Program
Hollow Square of Stars Printing Python Program – This program will print a hollow square of stars in Python programming language. Here’s a Python program to print a hollow square: n = 5 for i in range(n): if i == 0 or i == n – 1: print(‘*’ * n) else: print(‘*’ + ‘ ‘… Read More »