What is the meaning here, I opened a page, what needs to be download ?
and run in getabstracts.py
$$$
f = open("abstracts/a%d.txt" % (int(paperid), ) ,"w")
$$$
I can't get a%d.txt
When I changed f to f = open("abstracts/a%s.txt" % (paperid, ) ,"w"),I get lots of a%s.txt
Can I do that correctly?
What is the meaning here, I opened a page, what needs to be download ?
and run in getabstracts.py
$$$
f = open("abstracts/a%d.txt" % (int(paperid), ) ,"w")
$$$
I can't get a%d.txt
When I changed f to f = open("abstracts/a%s.txt" % (paperid, ) ,"w"),I get lots of a%s.txt
Can I do that correctly?