Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions November/Day 8/Python/Max_Character.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
""" written on march 4 2022 by
@BertinAm
the program below can detect the most frquent character in a list of them!
"""
from statistics import mode # statistics module that provides methods like the mode, median, mean etc


def most_common(lits): # function definition
common = mode(lits)
return common


print(most_common(["c", "d", "t", "c", "c", "r"])) # calling of the function most_common