简体   繁体   English

在python中写入csv文件时如何跳过一列

[英]How to skip a column when writing to a csv file in python

Sorry if this has been asked, but is it possible to skip a column when writing to a csv file?抱歉,如果有人问过这个问题,但是在写入 csv 文件时是否可以跳过一列?

Here is the code I have:这是我的代码:

with open("list.csv","r") as f:
    reader2 = csv.reader(f)
    for row in reader2:
        url = 'http://peopleus.intelius.com/results.php?ReportType=33&qi=0&qk=10&qp='+row
        req = urllib.request.Request(url)
        response = urllib.request.urlopen(req)
        html = response.read()
        retrieved_name = b'class="singleName">(.*?)<\/h1'
        retrieved_number = b'<div\sclass="phone">(.*?)<\/div'
        retrieved_nothing = b"(Sorry\swe\scouldn\\'t\sfind\sany\sresults)"
        if re.search(retrieved_nothing,html):
            noth = re.search(retrieved_nothing.decode('utf-8'),html.decode('utf-8')).group(1)
            add_list(phone_data, noth)
        else:
            if re.search(retrieved_name,html):
                name_found = re.search(retrieved_name.decode('utf-8'),html.decode('utf-8')).group(1)
            else:
                name_found = "No name found on peopleus.intelius.com"
            if re.search(retrieved_number,html):
                number_found = re.search(retrieved_number.decode('utf-8'),html.decode('utf-8')).group(1)
            else:
                number_found = "No number found on peopleus.intelius.com"
            add_list(phone_data, name_found, number_found)
        with open('column_skip.csv','a+', newline='') as mess:
            writ = csv.writer(mess, dialect='excel')
            writ.writerow(phone_data[-1])
        time.sleep(10)

Assuming that there is data in the first three rows of column_skip.csv, can I have my program start writing its info in column 4?假设 column_skip.csv 的前三行中有数据,我可以让我的程序开始在第 4 列中写入其信息吗?

Yeah, don't use csv.writer method and write it as an simple file write operation:是的,不要使用 csv.writer 方法并将其编写为简单的文件写入操作:

  `file_path ='your_csv_file.csv'
   with open(file_path, 'w') as fp:
       #following are the data you want to write to csv
       fp.write("%s, %s, %s" % ('Name of col1', 'col2', 'col4'))
       fp.write("\n")`

I hope this helps...我希望这有帮助...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM