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?
1 Answer
+ 1
Check out PyPDF2, ReportLab, or output it to a txt file with Python's open function
Hot today
mydict={"dog": 1, "cat": 3} for k,v in mydict.items(): report=(k+": "+ v) how can make a pdf?