I've recently started to learn python and do not understand %r and %s. What is the difference between the two? Analogies would be greatly appreciated. I've tried to problem solve and see how the two work. I created simple code to understand strings within python but it doesn't seem to work. What is wrong with the code below and what is the correct way of doing it? Also can you show step by step what you are doing in the CORRECT code? Thank you for helping an amateur learn python.
formatter = "%r %r %r %r"
print "Here are the days: formatter" % ('Monday','Tuesday','Wednesday','Thursday')