python csv file read code example
Example 1: python read csv
import pandas as pd
data = pd.read_csv('data.csv')
print(data)
Example 2: create csv file python
import csv
row_list = [["SN", "Name", "Contribution"],
[1, "Linus Torvalds", "Linux Kernel"],
[2, "Tim Berners-Lee", "World Wide Web"],
[3, "Guido van Rossum", "Python Programming"]]
with open('protagonist.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(row_list)
Example 3: read entire csv file python
import csv
f = open("fileName.csv")
reader = csv.DictReader(f)
data = [row for row in reader]
Example 4: read csv python
import pandas as pd
data = pd.read_csv("filename.csv")
data.head()
Example 5: how to open csv file in python
import csv
with open('example.csv') as csvfile:
readCSV = csv.reader(csvfile, delimiter=',')
Example 6: how to read a csv file in python
import pandas as pd
df=pd.read_csv('the_file.csv')