如何连接两个变量,其中一个是字符串而另一个不是

时间:2015-02-23 16:43:36

标签: python-2.7

我希望我的函数能够搜索两个索引,例如" name"和"州"。这样做并分配给两个单独的变量。 name已经是一个字符串,我们想将状态转换为字符串。我想连接这两个varibales。 nearcity是一个字符串,状态不是。我希望状态转换为字符串并连接两者。怎么做到呢。它很简单我认为但我是python的新手

if valTest:
            idx = layer.fieldNameIndex('name')  #name of the attribute column with the cities in it
            idx1 = layer.fieldNameIndex('state')
            nearCity = f.attributes()[idx]
            state = f.attributes()[idx1]

1 个答案:

答案 0 :(得分:3)

这应该做:

s = near_city + "," + str(state)