You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import csv
|
|
import pandas as pd
|
|
|
|
|
|
def return_csv_as_df(csv_file):
|
|
return pd.read_csv(csv_file)
|
|
|
|
|
|
def print_csv(csv_file):
|
|
with open(csv_file, "r") as file:
|
|
reader = csv.reader(file)
|
|
for row in reader:
|
|
print(row) |