+ 3
Please when and how do you use end='
4 Answers
+ 3
for i in range(4):
print(i)
print()
for i in range(4):
print(i, end=' ')
# end='' takes your iterated results & produces them in a horizontal line with the seperator being specified by the symbol between the quote marks.
# Try end=', '
+ 3
Thanks
+ 2
Ok... Thanks



