如何生成包含 math/calculus 结果的 pdf 报告
How to generate a pdf report with math/calculus results
我第一次尝试生成包含数学结果的 pdf 报告,我在这里寻求帮助,因为我已经在线搜索但没有找到任何相关信息。
我尝试修改我找到的代码,并添加了要导出到 pdf 的变量,在本例中为“C”,但没有成功。有什么想法吗?
代码:
from fpdf import FPDF
pdf = FPDF()
a = 1
b = 1
C = a+b
pdf.add_page()
pdf.set_font("Arial", size = 25)
# create a cell
pdf.cell(200, 10, txt = "a+b =", C,
ln = 1, align = 'C')
pdf.output("a.pdf")
您没有正确连接.. Python 使用 +
并且您需要使用 str()
将整数转换为字符串
txt = "a+b ="+str(C),
我第一次尝试生成包含数学结果的 pdf 报告,我在这里寻求帮助,因为我已经在线搜索但没有找到任何相关信息。 我尝试修改我找到的代码,并添加了要导出到 pdf 的变量,在本例中为“C”,但没有成功。有什么想法吗?
代码:
from fpdf import FPDF
pdf = FPDF()
a = 1
b = 1
C = a+b
pdf.add_page()
pdf.set_font("Arial", size = 25)
# create a cell
pdf.cell(200, 10, txt = "a+b =", C,
ln = 1, align = 'C')
pdf.output("a.pdf")
您没有正确连接.. Python 使用 +
并且您需要使用 str()
txt = "a+b ="+str(C),