Posts

Showing posts from November, 2020

Project 2

 """ Name Of the Project : ABC School Admission System Author Name : Shome Nath Bhawani Class : XII        Section : Z Session : 2020-21 Registration Number : 123456 """   import pickle import os def create():      rec=[]      with open("xyz.dat", "wb") as fp:          admno=int(input("Admission Form No"))          issdt=input("Date of Issue")          regno=int(input("Registration Number"))          regdt=input("Registration Date")          cname=input("Name of the Candidate")          add=input("Residential Address")          city=input("City Name")          dist=input("District Name")  ...