我正在使用 python,我有一个 csv 文件,其中包含多张表格中的数据。
所以我们可以使用python从csv文件中读取数据,如下所示
假设data.csv
文件中的数据sheet1
如下
what | are | you | doing | however
hello | that | would | be | useful
csv_file = "/home/user/csv_folder/data.csv"
for line in open(csv_file,'r'):
print line
..........
..........
上面的输出将如下所示
"what are you doing however"
"hello that would be useful"
但在同一个data.csv
文件中,我在另一个文件中有sheet2
如下数据
This | will | be | second | sheet | data
That | would | lot | useful | now
现在我要做的是打印存在于另一个中的数据sheets
(如果存在于单个 csv 文件中,则超过 1 张)。
谁能让我现在如何打印单个csv
文件中所有工作表中的数据?
任何人都可以分享一些处理单个csv文件中存在的多个工作表的python代码吗?