Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Max_Character.py #38

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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