7 (Seven) Pattern Programs that might come in your school exam! | Python

7 (Seven) Pattern Programs that might come in your school exam!


Here is a list of 7 Pattern Programs (coded in Python, but the idea remains the same for other languages as well)

Pattern1 :

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

Program Code :

Pattern2 :

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
1 2 3 4 5
1 2 3 4
1 2 3
1 2
1

Program Code :

Pattern3 :

1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
6 6 6 6 6 6
7 7 7 7 7 7 7

Program Code :

Pattern4 :

7 6 5 4 3 2 1
7 6 5 4 3 2
7 6 5 4 3
7 6 5 4
7 6 5
7 6
7

Program Code :

Pattern5 :

1
1 2 1
1 2 3 2 1
1 2 3 4 3 2 1
1 2 3 4 5 4 3 2 1
1 2 3 4 5 6 5 4 3 2 1
1 2 3 4 5 6 7 6 5 4 3 2 1

Program Code :

Pattern6 :

1     2     3     4     5     6     7
       2     3     4     5     6     7
              3     4     5     6     7 
                     4     5     6     7
                            5     6     7
                                   6     7
                                          7
                                  6     7
                           5     6     7 
                    4     5     6     7 
             3     4     5     6     7 
      2     3     4     5     6     7
1     2     3     4     5     6     7

Program Code :

Pattern7 :

1 1 1 1 1 1 1
1 1 1 1 1 2 2
1 1 1 1 3 3 3
1 1 1 4 4 4 4
1 1 5 5 5 5 5
1 6 6 6 6 6 6
7 7 7 7 7 7 7

Program Code :

Comments

Post a Comment