Answers for "pandas to read a csv file and print 4 rows"

0

pandas how to start read csv at a certain row

import pandas as pd
# Select file 
infile = r'path/file'
# Use skiprows to choose starting point and nrows to choose number of rows
data = pd.read_csv(infile, skiprows = 50, nrows=10)
Posted by: Guest on July-27-2021
1

pandas read csv file

df = pd.read_csv("filename.csv", encoding="some_encoding")
Posted by: Guest on July-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language