python 中判断字符串中出现次数最多的字母 import string def check(text): text = text.lower() return max(string.ascii_lowercase,key=text.count) text = " ...
確定! 回上一頁