02_Strings
Counting Characters in a String
Need to know: Dictionary, for loop def count_characters(string): counts = {} for ch...
Anagram
An anagram is word switch or word play. It is the result of rearranging the letters of a word or ...
Palindrome
Palindrome Worse approaches Reversing the String:You can reverse the string (using slicing ...