I'm trying to print horizontally not having any luck. I need to print
I#x where x one through the length of a list i.e.-I#1 I#2 I#3 I#4 etc. This is what I have which is syntactically wrong:
for x in range(1, len(depend)):
print "%05s" ('I#'+str(x))
Could someone please point me in the right direction.