PATIENT MANAGEMENT PROJECT USING CSV GRADE XII 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: display() elif d==6: gra() ...