Home
Flutter
Python
Android
ReactNative
C Tutorial
Q & A
Quiz
Forum
Kotlin
Java
Ruby
Source Code
Dart
Widget Catlog
Write For Us
DevOps
Vocabulary
Tutorials
Git
Jobs
XApk
DevOps
Blog
Sitemap
SubScribe
Python program to print * Pattern 20
for
x
in
range
(
5
,
0
, -
1
):
for
y
in
range
(
0
,
x
):
print
(
x
,
end
=
""
)
print
()
Output:
Run Python Online