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

* * 

* * * 

* * * * 

* * * * *