Как импортировать из файла xlsx через Openpyxl в класс Python? - PullRequest
0 голосов
/ 11 апреля 2019

У меня есть файл xlsx, который открывается с помощью Openpyxl.Каждая строка содержит student_id, first_name, second_name, parent_name и parent_email.

Я создал метод с именем Students

Я хочу, чтобы программа взяла каждую строку и присвоила ее методу, например.

Students(student_id = ['A -row number'], first_name = ['B -row number'], second_name = ['C - row number] ...etc

так, чтобы он циклически проходил через всех моих учеников и автоматически добавлял их

почти уверен, что ответ лежит в цикле, таком как:

for row in ws.rows:

1 Ответ

0 голосов
/ 12 апреля 2019

Так было намного лучше. Дич Openpyxl, откройте его из файла CSV. В файле CSV у меня есть строки каждого отдельного бита информации в столбцах A, B, C, D, E

например. A1 = Поттер, Гарри B1 = Поттер C1 = Гарри ... и т. Д.

import csv


#sorts all the student data into a class
class Students():
    def __init__(self,student_id, first_name,second_name,student_parent,parent_email):

        self.student_id = student_id
        self.first_name = first_name
        self.second_name = second_name
        self.student_parent = student_parent
        self.parent_email = parent_email


    def __repr__(self):
        return self.student_id + " " + self.first_name + " " +self.second_name + " " + self.student_parent + " " + self.parent_email


student_list = []

#opens the csv file, takes out the information and saves them in the Student Class
student_file = open('student_list.csv')
student_file_reader = csv.reader(student_file)
for row in student_file:
    row_string = str(row)
    row_parts1,row_parts2,row_parts3,row_parts4,row_parts5 = row_string.split(',')
    student_list.append(Students(row_parts1,row_parts2,row_parts3,row_parts4,row_parts5))

... и вот, у вас все в порядке в объектах в идеальном списке.

...