我有以下程序,在其中我想傳遞一個元素,以連續的谷歌搜索的列表:如何把所有的單詞列表中的元素作爲變量
search_terms = ['Telejob (ETH)', 'Luisa da Silva','The CERN Recruitment Services']
for el in search_terms:
webpage = 'http://google.com/search?q='+el)
print('xxxxxxxxxxxxxxxxxxx')
print(webpage)
不幸的是我的計劃是不把所有的單詞每個列表項,但只取第一個,給我這樣的輸出:
http://google.com/search?q=Telejob (ETH)
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=Luisa da Silva
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=The CERN Recruitment Services
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=The Swiss National Science Foundation
Altough你可以看到每一個字整個項目被添加到上面的搜索,當我驗證鏈接,它將僅作爲元素連接每個項目的第一個單詞,例如:
http://google.com/search?q=Telejob
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=Luisa
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=The
xxxxxxxxxxxxxxxxxxx
http://google.com/search?q=The
我在做什麼錯,有什麼解決方案將每個列表項中的所有單詞連接到谷歌搜索?
謝謝
參見[這裏](http://stackoverflow.com/questions/19353368/passing -string變量與 - 空格)。不同的語言,相同的問題,相同的解決方 –