spisok_chisel = [2, 15, 2, 4, 3, 7, 8, 15, 9, 2]
max = 0
sybol_max = ""
for i in spisok_chisel:
count = 0
for j in spisok_chisel:
if i == j:
count = count + 1
if count > max:
max = count
sybol_max = i
print("чаще всего встречается элемент: ", sybol_max)
Объяснение:
spisok_chisel = [2, 15, 2, 4, 3, 7, 8, 15, 9, 2]
max = 0
sybol_max = ""
for i in spisok_chisel:
count = 0
for j in spisok_chisel:
if i == j:
count = count + 1
if count > max:
max = count
sybol_max = i
print("чаще всего встречается элемент: ", sybol_max)
Объяснение: