我有CSV文件,其中一些链接存储在其中一列中。另外,我在同一CSV文件中还有其他一些数据。我只想阅读包含'https:'
的链接并打印出来。你能帮忙吗?
import csv
filename ='abc.csv'
with open(filename,'rb') as f:
reader = csv.reader(f)
try:
for row in reader:
if 'http:' in reader:
print(row)
答案 0 :(得分:0)
如果您不知道链接在哪一列中,可以尝试一下(只是对代码进行少量修改):
for row in reader:
for item in row:
if item.startswith('http'):
print(item)