book1 = book(name1) # book is a class
book2 = book(name2)
book3 = book(name3)
book4 = book(name4)
book5 = book(name5)
:
:
:
V
book-n = book(name-n):
:
V
I have the names of the book in a list but want to load those into class instances to take advantage off OOP. I could assign five to ten class objects like above...