aStudent = Student() # a temporary object # set field values for aStudent aStudent.name = ... ... student[:0] = [aStudent] # copy to the front ... or ... student[len(student):] = [aStudent] # copy to the end