A linguistic question I guess, but what's the (5) called in the code
print "%d" % (5)
?
I call the %d
an integer representation, but I'm not sure what to call the stuff it actually represents, regardless of it being a number, a variable, a calculation or w/e.
Is it called an argument?
I'm wondering because I'm making comments for an assignment where I'm calculating stuff in the parenthesis instead of making a new variable, calculating the variable and inserting the variable like x = 5;print "%d" % (x)