I'm confused with a statement, found in post here:
with open('cover.tex','w') as f:
f.write(content%args.__dict__)
What exactly is content%args.__dict__
? Is this Python 2.7? Quick googling/asking did not help.
Update: one suggestion is that %
is modulo division, by how is it applicable to a string?