CSV XII - BOARD PROJECT RESULT ANALYSIS PROJECT SAMPLE # -*- coding: utf-8 -*- """ Created on Sat Jun 19 16:59:58 2021 @author: Kirti Hora """ # CLASS XII RESULT ANALYSIS PROJECT SAMPLE #CSV DATA #File name: result.csv #File location: g:\ import pandas as pd import matplotlib.pyplot as plt # Main Menu while(True): print("Main Menu") print("1. Fetch data") print("2. Dataframe Statistics") print("3. Display Records") print("4. Working on Records") print("5. Working on Columns") print("6. Search specific row/column") print("7. Data Visualization") print("8. Data analystics") print("9. Exit") ch=int(input("Enter your choice")) if ch==1: result=pd.read_csv("D:\GRADE XII PYTHON/result.csv",index_col=0) elif ch==2: ...
CSV PROJECT PATIENT MAMAGEMENT # -*- coding: utf-8 -*- """ Created on Sat Nov 13 20:37:02 2021 @author: Kirti Hora """ import pandas as pd import matplotlib.pyplot as plt def main(): while True: print("="*60) print("enter 1 to ADD PATIENT DETAILS") print("enter 2 to DELETE PATIENT DETAIL") print("enter 3 to UPDATE PATIENT DETAIL") print("enter 4 to SEARCH PATIENT ") print("enter 5 to DISPLAY PATIENT DETAILS") print("enter 6 to DISPLAY CITY WISE GRAPH") print("enter 7 to EXIT....") d=int(input("enter choice:")) print("="*60) if d==1: add() elif d==2: delete() elif d==3: update() elif d==4: search() elif d==5: d...