strings.frequency_finder¶
Attributes¶
Functions¶
|
|
|
Get the frequency order of the letters in the given string |
|
|
|
Module Contents¶
- strings.frequency_finder.english_freq_match_score(message: str) int ¶
>>> english_freq_match_score('Hello World') 1
- strings.frequency_finder.get_frequency_order(message: str) str ¶
Get the frequency order of the letters in the given string >>> get_frequency_order(‘Hello World’) ‘LOWDRHEZQXJKVBPYGFMUCSNIAT’ >>> get_frequency_order(‘Hello@’) ‘LHOEZQXJKVBPYGFWMUCDRSNIAT’ >>> get_frequency_order(‘h’) ‘HZQXJKVBPYGFWMUCLDRSNIOATE’
- strings.frequency_finder.get_item_at_index_zero(x: tuple) str ¶
- strings.frequency_finder.get_letter_count(message: str) dict[str, int] ¶
- strings.frequency_finder.ETAOIN = 'ETAOINSHRDLCUMWFGYPBVKJXQZ'¶
- strings.frequency_finder.LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'¶
- strings.frequency_finder.english_letter_freq¶