如何在令牌后传递变量a
以下网址的值:
a = 123
import urllib
testfile = urllib.URLopener()
testfile.retrieve("'https://test.test.com/comp/export?format=csv& 'token:' ,"data.csv")
答案 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