+ 1
I want to display output in single Line...
2 Respuestas
+ 7
- Replace print("*") with print("*",end="")
- Remove the print("") at line 6 ( no use )
Or maybe... you want a pattern like this -
*
**
***
****
*****
...for this, don't remove the print ("") at line 6
+ 2
thanks