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
Get the longest repeated non-overlapping substring
HW3-final
Game4
dict()
19.09.18
Pytest
restraunt score
Lesson 6 part b2
prog1.py
Lab_I_1_25_11_2020