Hey I've got a problem with the for loop, so let say I want to achieve printing "#" signs 5 times with for loop with out space and in one line.
for i in range(5):
print "#",
can how I get ride of the space in between so it looks like ##### instead of # # # # #???