-
Notifications
You must be signed in to change notification settings - Fork 0
/
Update2.py
272 lines (253 loc) · 8.3 KB
/
Update2.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
SIZE = 3
ITEM_CODE = [None] * SIZE
ITEM_DESCRIPTION = [None] * SIZE
ITEM_PRICE = [None] * SIZE
ITEM_QUANTITY = [None] * SIZE
ITEM_CATEGORY = [None] * SIZE
index = 0
while index < SIZE:
choose = input("Push [1]\nAppend [2]\nPosition [3] ")
# Push Item
if choose == '1':
# Shift the elements of the list one position to the right, starting from the last element and working backwards, until the element at index 0 is reached. The element at index 0 will not be shifted, as it will be replaced by the new element.
i = SIZE - 1
count = 0
while i > 0 and count < SIZE - 1:
ITEM_CODE[i] = ITEM_CODE[i-1]
i -= 1
count += 1
ITEM_CODE[0] = input("Enter Item Code : ")
ctr = 0
while ctr < index:
if ITEM_CODE[ctr] == ITEM_CODE[index]:
print("Item Code Already Exist.")
break
else:
ctr += 1
if ctr == index:
# Shift the elements of the list one position to the right, starting from the last element and working backwards, until the element at index 0 is reached. The element at index 0 will not be shifted, as it will be replaced by the new element.
i = SIZE - 1
count = 0
while i > 0 and count < SIZE - 1:
ITEM_DESCRIPTION[i] = ITEM_DESCRIPTION[i-1]
ITEM_PRICE[i] = ITEM_PRICE[i-1]
ITEM_QUANTITY[i] = ITEM_QUANTITY[i-1]
ITEM_CATEGORY[i] = ITEM_CATEGORY[i-1]
i -= 1
count += 1
ITEM_DESCRIPTION[0] = input("Enter Item Description : ")
ITEM_PRICE[0] = float(input("Enter Item Price : "))
ITEM_QUANTITY[0] = int(input("Enter Item Quantity : "))
ITEM_CATEGORY[0] = input("Enter Item Category : ").upper()
index += 1
# Append Item
elif choose == '2':
ITEM_CODE[index] = input("Enter Item Code : ")
ctr = 0
while ctr < index:
if ITEM_CODE[ctr] == ITEM_CODE[index]:
print("Item Code Already Exist.")
break
else:
ctr += 1
if ctr == index:
ITEM_DESCRIPTION[index] = input("Enter Item Description : ")
ITEM_PRICE[index] = float(input("Enter Item Price : "))
ITEM_QUANTITY[index] = int(input("Enter Item Quantity : "))
ITEM_CATEGORY[index] = input("Enter Item Category : ").upper()
index += 1
# Insert at Specified Position
elif choose == '3':
position = int(input("Position: "))
if position >= SIZE or position < 0:
print("Index out of range. Please enter a valid position.")
index -= 1
else:
# num = int(input("Enter number: "))
# Shifts all the elements of the list starting from pos one position to the right in order to make room for the new value. It does this by assigning the value of each element to the element that comes after it.
i = SIZE-1
while i > position:
ITEM_CODE[i] = ITEM_CODE[i-1]
ITEM_DESCRIPTION[i] = ITEM_DESCRIPTION[i-1]
ITEM_PRICE[i] = ITEM_PRICE[i-1]
ITEM_QUANTITY[i] = ITEM_QUANTITY[i-1]
ITEM_CATEGORY[i] = ITEM_CATEGORY[i-1]
i -= 1
ITEM_CODE[position] = input("Enter Item Code : ")
ctr = 0
while ctr < index:
if ITEM_CODE[ctr] == ITEM_CODE[index]:
print("Item Code Already Exist.")
break
else:
ctr += 1
if ctr == index:
ITEM_DESCRIPTION[position] = input("Enter Item Description : ")
ITEM_PRICE[position] = float(input("Enter Item Price : "))
ITEM_QUANTITY[position] = int(input("Enter Item Quantity : "))
ITEM_CATEGORY[position] = input("Enter Item Category : ").upper()
index += 1
# Delete at Beginning
elif choose == '4':
if index == 0:
print("List is Empty")
else:
found = False
i = 0
while i < SIZE:
if i == 0:
j = i
while j < SIZE-1:
ITEM_CODE[j] = ITEM_CODE[j+1]
ITEM_DESCRIPTION[j] = ITEM_DESCRIPTION[j+1]
ITEM_PRICE[j] = ITEM_PRICE[j+1]
ITEM_QUANTITY[j] = ITEM_QUANTITY[j+1]
ITEM_CATEGORY[j] = ITEM_CATEGORY[j+1]
j += 1
ITEM_CODE[index] = None
ITEM_DESCRIPTION[index] = None
ITEM_PRICE[index] = None
ITEM_QUANTITY[index] = None
ITEM_CATEGORY[index] = None
found = True
index -= 1
i += 1
if found:
print("Item Deleted")
else:
print("Item Not Found")
# Delete at the End
elif choose == '5':
if index == 0:
print("List is Empty")
else:
found = False
i = 0
while i < SIZE:
if i == SIZE-1:
j = i
while j < SIZE-1:
ITEM_CODE[j] = ITEM_CODE[j+1]
ITEM_DESCRIPTION[j] = ITEM_DESCRIPTION[j+1]
ITEM_PRICE[j] = ITEM_PRICE[j+1]
ITEM_QUANTITY[j] = ITEM_QUANTITY[j+1]
ITEM_CATEGORY[j] = ITEM_CATEGORY[j+1]
j += 1
ITEM_CODE[index] = None
ITEM_DESCRIPTION[index] = None
ITEM_PRICE[index] = None
ITEM_QUANTITY[index] = None
ITEM_CATEGORY[index] = None
found = True
index -= 1
i += 1
if found:
print("Item Deleted")
else:
print("Item Not Found")
# Delete at the Specified Position
elif choose == '6':
if index == 0:
print("List is Empty")
else:
deletePosition = int(input("Delete Postion : "))
found = False
i = 0
while i < SIZE:
if deletePosition == i:
j = i
while j < SIZE-1:
ITEM_CODE[j] = ITEM_CODE[j+1]
ITEM_DESCRIPTION[j] = ITEM_DESCRIPTION[j+1]
ITEM_PRICE[j] = ITEM_PRICE[j+1]
ITEM_QUANTITY[j] = ITEM_QUANTITY[j+1]
ITEM_CATEGORY[j] = ITEM_CATEGORY[j+1]
j += 1
if i < index:
ITEM_CODE[index] = None
ITEM_DESCRIPTION[index] = None
ITEM_PRICE[index] = None
ITEM_QUANTITY[index] = None
ITEM_CATEGORY[index] = None
found = True
index -= 1
i += 1
if found:
print("Item Deleted")
else:
print("Item Not Found")
# Delete Item by Code
elif choose == '7':
if index == 0:
print("List is Empty")
else:
deleteItemCode = input("Delete Item by Code : ")
found = False
i = 0
while i < SIZE:
if deleteItemCode == ITEM_CODE[i]:
j = i
while j < SIZE-1:
ITEM_CODE[j] = ITEM_CODE[j+1]
ITEM_DESCRIPTION[j] = ITEM_DESCRIPTION[j+1]
ITEM_PRICE[j] = ITEM_PRICE[j+1]
ITEM_QUANTITY[j] = ITEM_QUANTITY[j+1]
ITEM_CATEGORY[j] = ITEM_CATEGORY[j+1]
j += 1
ITEM_CODE[index] = None
ITEM_DESCRIPTION[index] = None
ITEM_PRICE[index] = None
ITEM_QUANTITY[index] = None
ITEM_CATEGORY[index] = None
found = True
index -= 1
i += 1
if found:
print("Item Deleted")
else:
print("Item Not Found")
# Delete Item by Category
elif choose == '8':
if index == 0:
print("List is Empty")
else:
deleteItemCategory = input("Delete Item by Category : ").upper()
found = False
i = 0
while i < SIZE:
if deleteItemCategory == ITEM_CATEGORY[i]:
j = i
while j < SIZE-1:
ITEM_CODE[j] = ITEM_CODE[j+1]
ITEM_DESCRIPTION[j] = ITEM_DESCRIPTION[j+1]
ITEM_PRICE[j] = ITEM_PRICE[j+1]
ITEM_QUANTITY[j] = ITEM_QUANTITY[j+1]
ITEM_CATEGORY[j] = ITEM_CATEGORY[j+1]
j += 1
ITEM_CODE[index] = None
ITEM_DESCRIPTION[index] = None
ITEM_PRICE[index] = None
ITEM_QUANTITY[index] = None
ITEM_CATEGORY[index] = None
found = True
index -= 1
i += 1
if found:
print("Item Deleted")
else:
print("Item Not Found")
# Display All
elif choose == '15':
if index == 0:
print("List is Empty")
else:
print()
ctr1 = 0
while ctr1 < index:
print(ITEM_CODE[ctr1], ITEM_DESCRIPTION[ctr1], ITEM_PRICE[ctr1], ITEM_QUANTITY[ctr1], ITEM_CATEGORY[ctr1])
ctr1 += 1
# print()
# ctr1 = 0
# while ctr1 < index:
# print(ITEM_CODE[ctr1], ITEM_DESCRIPTION[ctr1], ITEM_PRICE[ctr1], ITEM_QUANTITY[ctr1], ITEM_CATEGORY[ctr1])
# ctr1 += 1