Data Science and Machine Learning Internship ...
- 1k Enrolled Learners
- Weekend/Weekday
- Live Class
Python programming language is quite easy to learn. The implementation of various libraries with the ease of syntax makes it stand out, one of the many reasons why it has become the most popular programming language in this decade. While the learning part is easy, the interviewers often seek your approach in building the logic for pattern programs. As tricky as it may sound, with python it is a piece of cake. In this article, we will learn about various pattern programs in python. The following topics are covered in this blog:
The pattern programs incorporate a lot of nested loops. So if you are not familiar with loops in python, make sure to check out the detailed tutorial on loops in python.
Following are a few star pattern programs in python.
def pattern(n): k = 2 * n - 2 for i in range(0,n): for j in range(0,k): print(end=" ") k = k - 1 for j in range(0, i+1): print("*", end=" ") print("\r") pattern(5)
Output:
def pattern(n): k = 2*n -2 for i in range(n,-1,-1): for j in range(k,0,-1): print(end=" ") k = k +1 for j in range(0, i+1): print("*", end=" ") print("\r") pattern(5)
Output:
def pattern(n): for i in range(0, n): for j in range(0, i + 1): print("* ", end="") print("\r") for i in range(n, 0 , -1): for j in range(0, i + 1): print("* ", end="") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 for i in range(0, n-1): for j in range(0, k): print(end=" ") k = k - 2 for j in range(0, i + 1): print("* ", end="") print("\r") k = -1 for i in range(n-1,-1,-1): for j in range(k,-1,-1): print(end=" ") k = k + 2 for j in range(0, i + 1): print("* ", end="") print("\r") pattern(5)
Output:
def pattern(n): k = n - 2 for i in range(n, -1 , -1): for j in range(k , 0 , -1): print(end=" ") k = k + 1 for j in range(0, i+1): print("* " , end="") print("\r") k = 2 * n - 2 for i in range(0 , n+1): for j in range(0 , k): print(end="") k = k - 1 for j in range(0, i + 1): print("* ", end="") print("\r") pattern(5)
Output:
def pattern(n): for i in range(0,n): for j in range(0, i+1): print("* " , end="") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 for i in range(0, n): for j in range(0, k): print(end=" ") k = k - 2 for j in range(0, i + 1): print("* ", end="") print("\r") pattern(5)
Output:
def pattern(n): for i in range(n, -1, -1): for j in range(0, i + 1): print("* ", end="") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 for i in range(0, n): for j in range(0 , k): print(end=" ") k = k - 1 for j in range(0 , i + 1 ): print("* ", end="") print("\r") k = n - 2 for i in range(n , -1, -1): for j in range(k , 0 , -1): print(end=" ") k = k + 1 for j in range(0 , i + 1): print("* ", end="") print("\r") pattern(5)
Output:
for i in range(5): for j in range(5): if i + j == 2 or i - j == 2 or i + j == 6 or j - i == 2: print("*", end="") else: print(end=" ") print()
Output:
Here are a few programs with numeric patterns in java.
def pattern(n): x = 0 for i in range(0 , n): x += 1 for j in range(0, i + 1): print(x , end=" ") print("\r") pattern(5)
Output:
def pascal(n): for i in range(0, n): for j in range(0, i + 1): print(function(i, j)," ", end="") print() def function(n, k): res = 1 if (k > n - k): k = n - k for i in range(0, k): res = res * (n - i) res = res // (i + 1) return res pascal(7)
Output:
def pattern(n): for i in range(1, n): for j in range(1, i + 1): print(j, end= " ") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 x = 0 for i in range(0, n): x += 1 for j in range(0, k): print(end=" ") k = k - 1 for j in range(0, i + 1): print(x, end=" ") print("\r") k = n - 2 x = n + 2 for i in range(n, -1, -1): x -= 1 for j in range(k, 0, -1): print(end=" ") k = k + 1 for j in range(0, i + 1): print(x, end=" ") print("\r") pattern(5)
Output:
def pattern(n): for i in range(n, 0, -1): for j in range(1, i + 1): print(j, end=" ") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 for i in range(0, n): for j in range(0, k): print(end=" ") k = k - 1 for j in range(0, i + 1): print('10', end="") print("\r") pattern(5)
Output:
Here are a few pattern programs in python with characters.
def pattern(n): x = 65 for i in range(0, n): ch = chr(x) x += 1 for j in range(0, i + 1): print(ch, end=" ") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 x = 65 for i in range(0, n): for j in range(0, k): print(end=" ") k = k - 1 for j in range(0, i + 1): ch = chr(x) print(ch, end=" ") x += 1 print("\r") pattern(7)
Output:
for i in range(7): for j in range(7): if j == 0 or i - j == 3 or i + j == 3: print("*", end="") else: print(end=" ") print()
Output:
def pattern(n): k = 2 * n - 2 x = 65 for i in range(0, n): ch = chr(x) x += 1 for j in range(0, k): print(end=" ") k = k - 1 for j in range(0, i + 1): print(ch, end=" ") print("\r") pattern(5)
Output:
def pattern(n): k = 2 * n - 2 for i in range(0, n): for j in range(0, k): print(end=" ") k = k - 1 x = 65 for j in range(0, i + 1): ch = chr(x) print(ch, end=" ") x += 1 print("\r") k = n - 2 x = 65 for i in range(n, -1, -1): for j in range(k, 0, -1): print(end=" ") k = k + 1 for j in range(0, i + 1): ch = chr(x) print(ch, end=" ") x += 1 print("\r") pattern(5)
Output:
This brings us to the end of this article where we have learned how we can implement different patterns in python using asterisk, numbers and characters with the help of loops in python. I hope you are clear with all that has been shared with you in this tutorial.
Find out our Python Training in Top Cities/Countries
India | USA | Other Cities/Countries |
Bangalore | New York | UK |
Hyderabad | Chicago | London |
Delhi | Atlanta | Canada |
Chennai | Houston | Toronto |
Mumbai | Los Angeles | Australia |
Pune | Boston | UAE |
Kolkata | Miami | Dubai |
Ahmedabad | San Francisco | Philippines |
If you found this article on “Python Pattern Programs” relevant, check out the Edureka’s Python Certification Training, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe.
We are here to help you with every step on your journey and come up with a curriculum that is designed for students and professionals who want to be a Python developer. The course is designed to give you a head start into Python programming and train you for both core and advanced Python concepts along with various Python frameworks like Django.
If you come across any questions, feel free to ask all your questions in the comments section of “Python Pattern Programs” and our team will be glad to answer or join our Master Python programming course.
If you’re trying to extend your business in this exciting field, check out our Artificial Intelligence Course. It is offered in collaboration with E&ICT Academy, National Institute of Technology, Warangal. This executive Masters’ Program equips students with information about the tools, techniques, and tools they require to advance their careers.
Course Name | Date | |
---|---|---|
Python Certification Training Course | Class Starts on 28th January,2023 28th January SAT&SUN (Weekend Batch) | View Details |
Python Certification Training Course | Class Starts on 25th February,2023 25th February SAT&SUN (Weekend Batch) | View Details |
Python Certification Training Course | Class Starts on 25th March,2023 25th March SAT&SUN (Weekend Batch) | View Details |
edureka.co