I am wondering how can I print some strings in a for loop in one line without space between each other.
I know concatenating strings without space in one line, but outside of a for loop:
>>> print('hi'+'hi'+'hi')
hihihi
However, I have no idea how to do that in a for loop.