fork download
  1. for i in range(1,6):
  2. for j in range(1,i+1):
  3. print("*",end=" ")
  4. print("\n")
Success #stdin #stdout 0.02s 9144KB
stdin
Standard input is empty
stdout
* 

* * 

* * * 

* * * * 

* * * * *