Python String Help Hawaiian Word Pronunciation -
i having trouble figuring out why code not printing out after input value word. can input word, not output after evaluating through while loop. thoughts? ai = "eye-" ae = "eye-" ao = "ow-" au = "ow-" ei = "ay-" eu = "eh-oo-" iu = "ew-" oi = "oy-" ou = "ow-" ui = "ooey-" = "ah-" e = "eh-" = "ee-" o = "oh-" u = "oo-" p = "p" k = "k" h = "h" l = "l" m = "m" n = "n" word = input("please enter hawaiian word want pronounced") character_count1 = int(0) character_count2 = int(1) pronunciation = "" while character_count1 < len(word): if word[character_count1:character_count2] == ai or word[character_count1:character_count2] == "ae"or word[character_count1:character_count2] == "ao"or word[character_count1:character_count2] == "ei...