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