ython怎么读取log文件并且将其存为csv
时间: 2023-10-09 18:14:18 浏览: 90
可以使用Python中的pandas和regex模块来读取log文件并将其存储为csv文件。
以下是一个示例代码:
```python
import pandas as pd
import re
# 读取log文件
with open('log.txt', 'r') as f:
log = f.read()
# 使用正则表达式从log中提取所需数据
pattern = r'(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}),\d+,\w+,(.+?)\n'
matches = re.findall(pattern, log)
# 将数据存储为DataFrame
df = pd.DataFrame(matches, columns=['datetime', 'message'])
# 将DataFrame存储为csv文件
df.to_csv('log.csv', index=False)
```
在这个示例代码中,首先使用Python的`open`函数读取log.txt文件中的数据。然后使用正则表达式从log中提取所需数据。在本示例中,正则表达式的模式匹配了每行log中的日期时间和消息内容。然后将匹配的数据存储为一个名为`matches`的列表中。
接着,使用pandas模块将`matches`列表转换为一个DataFrame。在这个示例代码中,我们将日期时间存储为一个名为`datetime`的列,将消息内容存储为一个名为`message`的列。
最后,使用`to_csv`方法将DataFrame存储为csv文件。在这个示例代码中,我们将结果存储为log.csv文件,并且使用`index=False`参数来避免将DataFrame中的行索引存储到csv文件中。
阅读全文