Create a function csv_read
that takes a CSV file as input. Open this file and print it line by line.
Csv file
vulgaris,3
veronica,2
lotus,1
hederacea,1
Stdout
vulgaris,3
veronica,2
lotus,1
hederacea,1
Use the Python module CSV.