500
If x=10, which print statement will NOT produce a syntax error?
a. print ('I have' x 'pairs of shoes')
b. print('I have,' x ', pairs of shoes)
c. print ('I have', x, 'pairs of shoes')
d. none of the above!
c. print ('I have', x, 'pairs of shoes')
(you need to separate the items with commas!)