我对 Python 还很陌生,但仍然无法以我想要的方式显示我拥有的数据。我有这段代码可以确定字符串中最常见的字符。但是,我如何将其打印为:('A', 3)
.
stringToData = raw_input("Please enter your string: ")
import collections
print (collections.Counter(stringToData).most_common(1)[0])
我只是想深入了解如何将此代码操作为类似于以下内容:
print "In your string, there are: %s vowels and %s consonants." % (vowels, cons)
显然它会说,“在你的字符串中,最常见的字符是 (character),它出现了 (number) 次。”
我正在使用 Python 2.7,我尝试使用,pprint
但我并不真正了解如何将其合并到我现有的代码中。
编辑:基本上,我要问的是如何编码查找字符串中最常见的字符并以诸如“在您的字符串中,最常见的字符是(字符)的方式打印它,它出现了(数字)次。 "