This video explains how to read data from CSV file in Python
Below is the code:
import csv
with open("student.csv","r") as file:
csvreaderobject=csv.reader(file)
for row in csvreaderobject:
if(len(row) != 0):
print(row)
Music: https://www.bensound.com