Print Inverted Pyramid of Stars in Python By Admin | June 12, 2023 0 Comment 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))