Housie/Tambola using Python with Tickets in PDF file
#HOUSIE IN PYTHON! #if you have'nt installed fpdf from cmd then do open cmd>type #pip install fpdf >enter from random import * from fpdf import FPDF def ImportantOne(x): xxx=False while xxx!=True: tkt=[] for i in range(3): lis=[] u=10 l=1 for j in range(9): no=randint(l,u) lis.append(no) u+=10 l+=10 tkt.append(lis) ...