Python program to print Pattern example 88

= 5  # size=5
px = 1
py = n * 2 - 1
for x in range(n, 0, -1):
    for y in range(1, n * 2 + 1):
        if (== px or y == py):
            print(x, end="")
        else:
            print(" ", end="")
    px += 1
    py -= 1
    print()

Output:
Patterns Programs

Subscribe For Daily Updates

100+ Python Pattern Examplespython pattern examples - star patterns, number patterns