How to create report in python? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How to create report in python?

mydict={"dog": 1, "cat": 3} for k,v in mydict.items(): report=(k+": "+ v) how can make a pdf?

28th Feb 2017, 6:03 PM
hamid
hamid - avatar
1 ответ
+ 1
Check out PyPDF2, ReportLab, or output it to a txt file with Python's open function
28th Feb 2017, 10:05 PM
thomas smith
thomas smith - avatar