summaryrefslogtreecommitdiff
path: root/progs/a336.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a336.py')
-rw-r--r--progs/a336.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a336.py b/progs/a336.py
new file mode 100644
index 0000000..7735d02
--- /dev/null
+++ b/progs/a336.py
@@ -0,0 +1,5 @@
+from collections import Counter
+def max_char(str1):
+ temp = Counter(str1)
+ max_char = max(temp, key = temp.get)
+ return max_char \ No newline at end of file