python将数据存储为csv_使用Python csv将数据存储为csv文件的一些记录

本文记录了在使用Python的csv模块将数据存储为CSV文件时遇到的问题。在分析pcap文件后,作者将筛选出的信息写入CSV。在尝试写入文件时,遇到了TypeError,原因是误用了二进制模式。通过查看源码,了解到正确的打开方式是't'模式而非'wb'模式。此外,还提到了两个代码风格警告,一个是建议使用列表推导式简化列表创建,另一个是提醒遵循PEP8变量命名规范,建议变量名全小写。
摘要由CSDN通过智能技术生成

2019-03-04 遇到的一点小问题

使用Python scapy分析pcap文件时,有很多不需要的数据,每次测试时打开文件都要一小会,然后网上很多数据分析教程都是分析的csv文件,所以在对数据筛选后,将需要的信息存储为comma-separated values (CSV)文件。

import csv

path = "wannoo.csv"

with open(path, 'w') as f:

cw= csv.writer(f)

title = ['Time', 'Type', 'Len']

cw.writerow(title)

操作csv文件的方法网上很多,懒得多写了。

TypeError: a bytes-like object is required, not 'str

这是在使用网上搜索的代码时遇到一个错误,看了一下是因为使用with open(path, 'wb') as f:,多了个b,二进制模式打开。看了下源码,相关模式说明如下:

'r' open for reading (default)

'w' open for writing, truncating the file first

'x' create a new file and open it for writing

'a' open for writing, appending to the end of the file if it exists

'b' binary mode

't' text mode (default)

'+' open a disk file for updating (reading and writing)

'U' universal newline mode (deprecated)

然后记录一下遇到的几个警告:

This list creation could be rewritten as a list literal less... (Ctrl+F1)

Inspection info: This inspection detects situations when list creation could be rewritten with list literal.

这个是因为之前我声明列表及添加元素的方式为:

list = []

list.append(1)

list.append(2)

list.append(3)

应该修改为:

list = [1,2,3]

ab6c0ceebb8dd33413aae3dbc45ab042.png

list literal

Variable in function should be lowercase less... (Ctrl+F1)

Inspection info: This inspection checks the PEP8 naming conventions.

这个警告是因为我的变量名称有大写。命名规则是全小写,两个单词应该使用下划线_连接。

399fcc9f25be5c47893664b5b560639d.png

变量小写.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值