Umwandlung eines CSV in Python -Liste
import csv
with open('records.csv', 'r') as f:
file = csv.reader(f)
my_list = list(file)
print(my_list)
Krypton 36
import csv
with open('records.csv', 'r') as f:
file = csv.reader(f)
my_list = list(file)
print(my_list)