I have a question: How can I print a character on a specific stdout column?
I know that:
print '{0} and {1}'.format('spam', 'eggs')
prints spam on the first column and eggs on the second one.
But I want to do this:
column = 3
...
print '{column}'.format('spam')
cheers.
.format(**locals())(so I can refer to local variables inside the string).