When I print a strings character one by one in a line, space occur automatic. between them!!
import time
a="mayank"
for z in a:
time.sleep(0.1)
print z,
m a y a n k
But I want to print them without spaces between them!! Like:-
mayank
In python2.7