-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPython_Exercise_5.py
195 lines (184 loc) · 7.18 KB
/
Python_Exercise_5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Health Management System
# 3 Clients - Mihir,Raj,Manoj
def log():
"""This Function Use For Write Data In File"""
print("Please Write Below Your Content : ")
f.write(input())
f.write("\n")
def retrive():
"""This Function Use For Read Data From File"""
for line in f:
print(line, end=" ")
print()
b = True
while b:
# Main Menu Of HMS
print("Health Management System".center(200, "-"))
print("Enter The Number Whose File Do You Want To Manage : ")
print("1. Mihir")
print("2. Raj")
print("3. Manoj")
print("0. Exit")
choice = int(input())
# Choices From Main Menu
if choice == 0: # Code For Exit HMS
exit()
elif choice == 1: # Code For Choice 1 -- Mihir
a = True
while a:
# Code For Mihir's Menu
print(" Enter The Number What Do You Want To Manage : ")
print("1. Diet Plan")
print("2. Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice2 = int(input())
# Choices From Mihir's Menu
if choice2 == 0: # Code For Exit
exit()
elif choice2 == 1: # Code For Diet Plan
c = True
while c:
# Code For Diet Plan Menu
print("Enter What Do You Want To Do : ")
print("1. Read Diet Plan")
print("2. Write Diet Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
# Choices From Diet Plan Menu
if choice3 == 0: # Code For Exit
exit()
elif choice3 == 1: # Code For Read Diet Plan
with open("Mihir Diet plan.txt ") as f:
retrive()
elif choice3 == 2: # Code For Update Diet Plan
with open("Mihir Diet plan.txt ", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 2: # Code For Workout Plan
c = True
while c:
# Choices For Workout Plan Menu
print("Enter What Do You Want To Do : ")
print("1. Read Workout Plan")
print("2. Write Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
# Choices From WorkOut Plan
if choice3 == 0: # Code For Exit
exit()
elif choice3 == 1: # Code For Reading WorkOut Plan
with open("Mihir Workout plan.txt") as f:
retrive()
elif choice3 == 2: # Code For Update WorkOut Plan
with open("Mihir Workout plan.txt", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 3:
break
elif choice == 2:
a = True
while a:
print(" Enter The Number What Do You Want To Manage : ")
print("1. Diet Plan")
print("2. Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice2 = int(input())
if choice2 == 0:
exit()
elif choice2 == 1:
c = True
while c:
print("Enter What Do You Want To Do : ")
print("1. Read Diet Plan")
print("2. Write Diet Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
if choice3 == 0:
exit()
elif choice3 == 1:
with open("Raj Diet plan.txt ") as f:
retrive()
elif choice3 == 2:
with open("Raj Diet plan.txt ", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 2:
c = True
while c:
print("Enter What Do You Want To Do : ")
print("1. Read Workout Plan")
print("2. Write Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
if choice3 == 0:
exit()
elif choice3 == 1:
with open("Raj Workout plan.txt ") as f:
retrive()
elif choice3 == 2:
with open("Raj Workout plan.txt ", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 3:
break
elif choice == 3:
a = True
while a:
print(" Enter The Number What Do You Want To Manage : ")
print("1. Diet Plan")
print("2. Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice2 = int(input())
if choice2 == 0:
exit()
elif choice2 == 1:
c = True
while c:
print("Enter What Do You Want To Do : ")
print("1. Read Diet Plan")
print("2. Write Diet Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
if choice3 == 0:
exit()
elif choice3 == 1:
with open("Manoj Diet plan.txt ") as f:
retrive()
elif choice3 == 2:
with open("Manoj Diet plan.txt ", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 2:
c = True
while c:
print("Enter What Do You Want To Do : ")
print("1. Read Workout Plan")
print("2. Write Workout Plan")
print("3. Previous Menu")
print("0. Exit")
choice3 = int(input())
if choice3 == 0:
exit()
elif choice3 == 1:
with open("Manoj Workout plan.txt ") as f:
retrive()
elif choice3 == 2:
with open("Manoj Workout plan.txt ", "a") as f:
log()
elif choice3 == 3:
break
elif choice2 == 3:
break