Python: How to print class objects within a list?
Hi, i'm currently writing some code in python that opens up a .csv file and splits the row data into a class called Students...so far so good! Then each instance of this class is added to a list -also good. student_list = [] #opens the csv file, ta...
Apr 11, 2019J