0
code which make result like this
hi i need code which make result like this + +++ +++++ +++++++ +++++++++
2 Answers
+ 6
import sys
k = 1
for i in range(5):
for j in range(k):
sys.stdout.write('+')
print()
k += 2
+ 2
@Vukan
Instead of importing sys you can use print(end="") instead.