Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
9202335.py
rows = 5 i = 1 while i <= rows: j = i while j < rows: # display space print(' ', end=' ') j += 1 k = 1 while k <= i: print('*', end=' ') k += 1 print() i += 1 i = rows while i >= 1: j = i while j <= rows: print(' ', end=' ') j += 1 k = 1 while k < i: print('*', end=' ') k += 1 print('') i -= 1
run
|
edit
|
history
|
help
1
abc python basic
linked_lists_2
I_Love_India
try
BasicFunctionsPrograms,py
shuru8
string length
Komalsri123
Binary Search
PyPackMenuClass