使用逗号连接表达式组件

时间:2017-09-12 14:28:33

标签: python-2.7

  • trafficLightsCount = 12
  • bufferDist =' 5英里。 '
  • intersectionCount = 20
  • 打印'找到',trafficLightCount,点亮 intersectionCount,buffer和' buffereDist'十字路口。'

1 个答案:

答案 0 :(得分:0)

a='something'
b=12
c='Another thing'
print 'Found : ' + '{0},{1},{2}'.format(a,b,c)

您将获得输出:Found : something,12,Another thing