Reading Csv With Custom Delimiter
Mon 10 August 2026
import csv
with open("data_pipe.csv", "r") as file:
reader = csv.reader(file, delimiter="|")
for row in reader:
print(row)
Score: 5
Category: chapter11_csv_handling
import csv
with open("data_pipe.csv", "r") as file:
reader = csv.reader(file, delimiter="|")
for row in reader:
print(row)
Score: 5
Category: chapter11_csv_handling