-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmode.py
More file actions
32 lines (32 loc) · 849 Bytes
/
mode.py
File metadata and controls
32 lines (32 loc) · 849 Bytes
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
# Mode of a data set
a=[]
print("THE DATA SET CAN BE UN-SORTED AND THE ELEMENTS NEED NOT BE UNIQUE")
print("*** **** *** *** ** ********* *** *** ******** **** *** ** ******")
print("PRESS * TO STOP ENETRING ELEMENTS")
print("******* ** **** ******** ********")
n=input("Enter the first element")
while(n!='*'):
y=int(n)
a.append(y)
n=input("Enter the next element")
print("You have eneterd the following set of data:",a)
modes=[]
old_count=0
new_count=0
i=0
evalted=[]
for x in a:
if x in evalted:
pass
else:
new_count=a.count(x)
if old_count<new_count:
modes[0:]=[]
modes.append(x)
old_count=new_count
elif old_count==new_count:
modes.append(x)
old_count=new_count
evalted.append(x)
i+=1
print("The mode/s is/are:",modes)