diff options
Diffstat (limited to 'progs/a336.py')
-rw-r--r-- | progs/a336.py | 5 |
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 |