FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python-Pattern-Programs/pattern5.py at master · dev-aniketj/Python-Pattern-Programs · GitHub
dev-aniketj
/
Python-Pattern-Programs
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Python-Pattern-Programs
/
pattern5.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (13 loc) · 169 Bytes
Breadcrumbs
Python-Pattern-Programs
/
pattern5.py
Copy path
File metadata and controls
16 lines (13 loc) · 169 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'''
Pattern 5
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
'''
n
=
5
for
i
in
range
(
1
,
n
+
1
):
for
j
in
range
(
n
,
0
,
-
1
):
print
(
j
,
end
=
' '
)
print
()
Back
|
FazBrowse Home
|
New Git URL