如何用python实现csv搜索某个字符串,一旦搜索到,就复制该行

2024-11-13 04:19:09
推荐回答(1个)
回答1:

String = '***'
for i in open('csv',r):
    if String in i:
        print i