In old-style Python formatting, what do %s and %d represent?
%s
%d
%s is an integer placeholder and %d is a string placeholder.
%s is a string placeholder and %d is an integer placeholder.
Both specifiers insert line breaks into the result.
Both specifiers convert values to percentages.