我正在尝试使用 FPDF 库在 Python 中创建一个表。以下代码给我一个错误:
'FPDF' object has no attribute 'table'.
我不知道如何解决它。我将感谢您的帮助。
代码:
import fpdf
from fpdf import FPDF
pdf = FPDF()
TABLE_Data = (('Etap' , 'Czas rozpoczecia' , 'Czas trwania'),
('Wychladzanie pieca' , 'IDLE_start' , ''),
('NIF temp = 1200C' , 'IDLE_step1' , 'IDLE_time_step1'),
('Przycisk DROP' , 'IDLE_step2' , 'IDLE_time_step2'),
('DROP' , 'IDLE_step3' , 'IDLE_time_step3'),
('Preciki - START' , 'IDLE_step4' , 'IDLE_time_step4'),
('Preciki - STOP' , 'IDLE_step5' , 'IDLE_time_step5'),
('V = 15 m/min' , 'IDLE_step6' , 'IDLE_time_step6'),
('V = 50 m/min' , 'IDLE_step7' , 'IDLE_time_step7'),
('Srednica w tolerancji' , 'IDLE_step8' , 'IDLE_time_good'),
('Predkosc robocza' , 'IDLE_end' , 'IDLE_time_end')
)
pdf.add_page()
pdf.set_font('Helvetica', 'b', 18)
with pdf.table() as table:
for data_row in TABLE_Data:
row = table.row()
for datum in data_row:
row.cell(datum)
pdf.output('table.pdf')
我在论坛上寻找答案。唯一的信息是关于:pdf.add_page() 和 pdf.set_font(),但这两个选项都在我的示例中声明。