👤

rows = 5
for i in range(0, rows):
for j range(0, i + 1):
print("*", end=' ')
print("\r")

for i in range(rows, 0, -1)
??????????
print(\r)

Ce lipseste pe randul cu ??? pentru a obtine
*
**
***
****
*****
****
***
**
*

(programul este ideone.com)