목록리스트컴프리핸션#문자열#리스트#딕션어리 (1)
JustDoEat
[Python/String-Manipulation] Most Common Word
문제. 주어진 문자열 paragraph과 금지된 단어들의 문자열 배열 banned이 있습니다. 금지된 단어가 아닌 가장 빈번하게 나타나는 단어를 반환하세요. 적어도 하나의 금지되지 않은 단어가 있으며, 답은 유일함이 보장됩니다. paragraph에 포함된 단어들은 대소문자를 구분하지 않으며, 답은 소문자로 반환되어야 합니다. 코드. def find_value(count_words ,value )->list: many_word=[] for keys,values in count_words.items(): if values == value: many_word.append(keys) return many_word str_input = "Bob hit a ball, the hit BALL flew far afte..
카테고리 없음
2023. 11. 22. 22:14