s='We tried list and we tried dicts also we tried Zen'
word_count={} s=s.split(' ') for word in s: word_count[word]=s.count(word)
for key, value in word_count.items(): print key,value
Page:
Context:
Rosalind is a platform for learning bioinformatics through problem solving. Please login with Google/Twitter/Facebook or register a new account.