标签: python-2.7
答案 0 :(得分:0)
a='something' b=12 c='Another thing' print 'Found : ' + '{0},{1},{2}'.format(a,b,c)
您将获得输出:Found : something,12,Another thing
Found : something,12,Another thing