based on user's profile/tag, and the target URL recommand
1 2 3 4 5 6 7 | f = open("rec_2.tmp")
try:
for line in f:
print line
finally:
f.close()
sys.exit(0)
|
Tags: web
based on user's profile/tag, and the target URL recommand
1 2 3 4 5 6 7 | f = open("rec_2.tmp")
try:
for line in f:
print line
finally:
f.close()
sys.exit(0)
|
Seems more like "cat" to me. cat rec_2.tmp would have worked as well