Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I solve this in Python?

Please enter a string of text (the bigger the better): The rain in Spain stays mainly in the plain. The distribution of characters in "The rain in Spain stays mainly in the plain." is:

iiiiii
nnnnnn
aaaaa
sss
ttt
ee
hh
ll
pp
yy
m
r
share|improve this question
4  
What have you tried that didn't work? Hint: Have a look at collections.Counter. – Ashwini Chaudhary Feb 6 at 18:38

closed as not a real question by David Robinson, Martijn Pieters, Ashwini Chaudhary, tcaswell, Julius Feb 6 at 19:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

This prints that exact output:

dist={}
ex='The rain in Spain stays mainly in the plain.'
for ch in ex.lower():
    if ch.isalpha(): dist.setdefault(ch,[]).extend(ch)

out={k:''.join(val) for k,val in dist.iteritems()}.values()
print '\n'.join(sorted(out, key=lambda x: (-len(x),x)))

prints:

iiiiii
nnnnnn
aaaaa
sss
ttt
ee
hh
ll
pp
yy
m
r
share|improve this answer
1  
You can use str.isalpha instead of string.letters. – Ashwini Chaudhary Feb 6 at 18:47
@davidroberston i need it printed in the list like a I posted in descending order. is that possible? – dog124et Feb 6 at 18:56
@AshwiniChaudhary: Thanks: Done – the wolf Feb 6 at 19:30

Not the answer you're looking for? Browse other questions tagged or ask your own question.