I don't know how to express this. I want to print:
_1__2__3__4_
With "_%s_" as a substring of that. How to get the main string when I format the substring? (as a shortcut of:
for x in range(1,5):
print "_%s_" % (x)
(Even though this prints multiple lines))
Edit: just in one line
"_" + s + "_"