format
# https://docs.python.org/3/library/string.html#format-string-syntax
a = 'tony'
b = 'good'
c='{0} is {1}'
print(c.format(a,b))INFO
# https://docs.python.org/3/library/string.html#format-string-syntax
a = 'tony'
b = 'good'
c='{0} is {1}'
print(c.format(a,b))