Advertisement
gregwa

FCM 159 - test1.py

Jul 9th, 2020
1,030
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import sys
  2. from fpdf import FPDF
  3. pdf = FPDF()
  4. pdf.add_page()
  5. pdf.set_font('Arial', 'B', 16)
  6. pdf.cell(40, 10, 'Hello Full Circle Magazine!')
  7. pdf.output('tuto1.pdf', 'F')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement