摘要: f = open("foo.txt") # 返回一个文件对象 line = f.readline() # 调用文件的 readline()方法 while line: a='http://'+line print(a, end = '') line = f.readline() with open( 阅读全文
posted @ 2020-11-21 14:30 si1encely 阅读(345) 评论(0) 推荐(0)