As mentioned in other answers, you can print using sys.stdout.write or use a trailing comma after printing to make this space, but another way to print a list with any separator is to connect:
print "".join(['.','.','.']) # ... print "foo".join(['.','.','.']) #.foo.foo.
source share