Print Inverted Pyramid of Stars in Python Print Inverted Pyramid of Stars in Python – Write a Python program to display inverted pyramid of stars. Source Code n = 5 for i in range(n, 0, -1): print(‘ ‘ * (n – i) + ‘*’ * (2 * i – 1))