https://github.com/fahimfba/pattern-python
Pattern printing using Python 🐍
https://github.com/fahimfba/pattern-python
pattern pattern-printing pattern-printing-programs-star patterns python-pattern python-patterns
Last synced: 6 months ago
JSON representation
Pattern printing using Python 🐍
- Host: GitHub
- URL: https://github.com/fahimfba/pattern-python
- Owner: FahimFBA
- License: mit
- Created: 2022-03-09T12:52:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-19T05:03:57.000Z (over 3 years ago)
- Last Synced: 2025-02-05T03:42:15.094Z (8 months ago)
- Topics: pattern, pattern-printing, pattern-printing-programs-star, patterns, python-pattern, python-patterns
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Pattern Printing
## Patterns with the Video Tutorial
#### [⭐ Check the full playlist](https://www.youtube.com/playlist?list=PL7ZCWbO2Dbl5n9oOiG0V3ZXzt-6W1pOnH)
### 🎖️ Pattern 1
```
*
* *
* * *
* * * *
* * * * *
```
[Check the Video tutorial](https://youtu.be/apq1sHtj9Fk)### 🎖️ Pattern 2
```
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
```
[Check the Video tutorial]()### 🎖️ Pattern 2 - Understanding the `range` function
[Check the Video tutorial]()
### 🎖️ Pattern 3
```
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
```[Check the Video tutorial]()
### 🎖️ Pattern 4
```
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
```[Check the Video tutorial]()
### 🎖️ Pattern 5
```
🎖️
🎖️ 🎖️
🎖️ 🎖️ 🎖️
🎖️ 🎖️ 🎖️ 🎖️
🎖️ 🎖️ 🎖️ 🎖️ 🎖️
```
or
```
#
# #
# # #
# # # #
# # # # #
```
[Check the Video tutorial]()### 🎖️ Pattern 6
```
1 1 1 1 1
2 2 2 2
3 3 3
4 4
5
```
[Check the Video tutorial]()### 🎖️ Pattern 7
```
5 5 5 5 5
5 5 5 5
5 5 5
5 5
5
```
[Check the Video tutorial]()### 🎖️ Pattern 8
```
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1
```[Check the Video tutorial](https://youtu.be/0nqenoaIq8s)