What will be the output of the following Python code snippet?
'%(qty)d more %(food)s' %{'qty':1, 'food': 'spam'}
'%(qty)d more %(food)s' %{'qty':1, 'food': 'spam'}A. Error
B. No output
C. '1 more foods'
D. '1 more spam'
Answer: Option D

Join The Discussion