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.
You can do something like this but it’s quite ugly.