使用islice可以指定读取CSV的行数
比如下面读取表头(0,1)
或是跳过表头读取(lines,1,None)即可;
记录
import sqlite3,os,csv
from itertools import islice
os.chdir(r'C:\Users\G.Hu\Desktop\Pandas\3\\')
with open(r'123456789asdfghjkl.csv','r') as myFile:
lines = csv.reader(myFile)
for line in islice(lines,0,1):
print(line)
使用islice可以指定读取CSV的行数比如下面读取表头(0,1)或是跳过表头读取(lines,1,None)即可;记录import sqlite3,os,csvfrom itertools import isliceos.chdir(r'C:\Users\G.Hu\Desktop\Pandas\3\\')with open(r'123456789asdfghjkl.csv','r') as myFile: lines = csv.reader(myFile) for line
import csv
with open('表格/2019-04-01.csv', 'r') as read_file:
reader = csv.reader(read_file)
for row in reader:
print(row)
如果需要跳过第一行,可以每次判断行数是否为1。但这样写的代码执行效率偏低,因为每次都需要判断当前的行号。
使用Python提供的iter
class lombok.javac.apt.LombokProcessor (in unnamed module @0x43a188b6) cannot access class com.sun.t