In python 2 i have this simple loop
while True:
for i in ["/", "-", "|", "\\", "|"]:
print "%s\r" % i,
It produces a loop of those symbols, on the same line, replacing each character in place (so you never see more than 1 symbol)
However, in python3
while True:
for i in ["/", "-", "|", "\\", "|"]:
print("%s\r" % i,)
The same code, when fixed for syntax, prints each symbol on a new line
Not sure what I am missing, would appreciate the help