我想使用多个网址,但我不想像下面那样输入所有网址,而是想编写一个代码,自动+ 1是网址中的最后一个数字,直到月底。这可能吗?
eventurl = "http://data.hisparc.nl/show/source/eventtime/501/2017/1/1/"
eventurl2 = "http://data.hisparc.nl/show/source/eventtime/501/2017/1/2/"
eventurl3 = "http://data.hisparc.nl/show/source/eventtime/501/2017/1/3/"
答案 0 :(得分:1)
你可能正在寻找一种叫做for循环的东西试试这段代码片段
base_url = "http://data.hisparc.nl/show/source/eventtime/501/2017/1/{}/"
number_of_days_in_month = 30
for i in range(number_of_days_in_month):
print(base_url.format(i+1))
答案 1 :(得分:0)
这有效!
eventurl = "http://data.hisparc.nl/show/source/eventtime/501/2017/1/"
for dag in range(1, 32):
print(eventurl + str(dag))
(dag =荷兰语日)