Health Management System | Made with python.
Health Management System This system basically works for 3 persons Harry, Rohan and Hammad. Their food and exercise is recorded. ----------------------------- def getdate (): import datetime return datetime.datetime.now() def see (a): if a== '1' : h= input ( "For food enter f and for exercise enter e: " ) if h== "f" : with open ( "harry-food.txt" ) as f: content = f.read() print (content) elif h== "e" : with open ( "harry-exercise.txt" ) as f: content = f.read() print (content) else : print ( "Enter f or e !" ) elif a== '2' : r = input ( "For food enter f and for exercise enter e: " ) if r == "f" : with open ( "rohan-food.txt" ) as f: content = f.read() print (content) ...