Python Program to Print K Shape Number Pattern

Write a Python program to print K shape number pattern using for loop.

rows = int(input("Enter K Shape Number Pattern Rows = "))

print("====K Shape Number Pattern====")

for i in range(rows, 0, -1):
    for j in range(1, i + 1):
        print(j, end = ' ')
    print()

for i in range(2, rows + 1):
    for j in range(1, i + 1):
        print(j, end = ' ')
    print()
Python Program to Print K Shape Number Pattern

This Python example prints a K shape number pattern using a while loop.

rows = int(input("Enter K Shape Number Pattern Rows = "))

print("====K Shape Number Pattern====")
i = rows

while(i >= 1):
    j = 1
    while(j <= i):
        print(j, end = ' ')
        j = j + 1
    print()
    i = i - 1

i = 2
while(i <= rows ):
    j = 1
    while(j <= i):
        print(j, end = ' ')
        j = j + 1
    print()
    i = i + 1
Enter K Shape Number Pattern Rows = 9
====K Shape Number Pattern====
1 2 3 4 5 6 7 8 9 
1 2 3 4 5 6 7 8 
1 2 3 4 5 6 7 
1 2 3 4 5 6 
1 2 3 4 5 
1 2 3 4 
1 2 3 
1 2 
1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 
1 2 3 4 5 6 
1 2 3 4 5 6 7 
1 2 3 4 5 6 7 8 
1 2 3 4 5 6 7 8 9 

About Suresh

Suresh is the founder of TutorialGateway and a freelance software developer. He specialized in Designing and Developing Windows and Web applications. The experience he gained in Programming and BI integration, and reporting tools translates into this blog. You can find him on Facebook or Twitter.