Python Read CSV File Pandas

PYTHON 2 weeks ago 1,108 views
S

sujeetkumar713

21 public snippets
1,108 Views
0 Comments
0 Saves

Description

Python pandas read CSV tutorial. Learn how to load CSV data easily.
Python Read CSV File Pandas.py
import pandas as pd

df = pd.read_csv('data.csv')
print(df.head())

Comments (0)

Add Comment

No comments yet. Be the first to comment!