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 61
Python Code
Copy Code
size
=
3
for
x
in
range
(
size
, -(
size
+
1
), -
1
):
for
y
in
range
(
abs
(
x
),
0
, -
1
):
print
(
" "
,
end
=
""
)
for
z
in
range
(
abs
(
x
),
4
):
print
(
z
,
end
=
""
)
print
()
Output:
Run Python Online