how to make multiple placeholders in a string with %s python code example
Example: how to make multiple place holders in a string with %s python
a = 'bananas'
b = 'apples'
c = 'peaches'
print('I like to eat %s, %s and %s' %(a, b, c))
#Prints: I like to eat bananas, apples and peaches