如何在python中将变量值传递给urllib

时间:2018-03-21 16:52:03

标签: python selenium selenium-chromedriver urllib

如何在令牌后传递变量a以下网址的值:

   a = 123
   import urllib
   testfile = urllib.URLopener()
   testfile.retrieve("'https://test.test.com/comp/export?format=csv& 'token:' ,"data.csv")

1 个答案:

答案 0 :(得分:1)

您可以使用str.format

例如:

a=123
import urllib
testfile = urllib.URLopener()
testfile.retrieve("https://test.test.com/comp/export?format=csv&token:{0}".format(a),"data.csv")

<强>演示:

a = 123
print("https://test.test.com/comp/export?format=csv&token:{0}".format(a))
https://test.test.com/comp/export?format=csv&token:123