project.py
#Making recipt for school #Here we are importing the modules which are required from reportlab . platypus import SimpleDocTemplate , Table , Paragraph , TableStyle from reportlab . lib import colors from reportlab . lib . pagesizes import A4 from reportlab . lib . styles import getSampleStyleSheet #here we are adding the data in the recipt data = [[ 'Name of the student' , 'Roll Number' , 'Age ' , 'class' , 'paid fee' , ' payment date' , 'Balance' ]] #taking input and addind into data while True : try : name = input ( 'Enter name of the student: ' ) roll = int ( input ( 'Enter roll number:' )) age = int ( input ( 'Enter age of the student: ' )) cla = input ( 'Enter the class of the student:class ' ) ...