본문으로 건너뛰기
🛠️ToolsShed

운율 찾기

내장 사전으로 영어 단어의 라임을 찾습니다.

운율 계열 찾아보기

이 도구 소개

Rhyme Finder는 입력한 단어와 운이 맞는 영어 단어를 찾아 주며, 수백 개의 흔한 단어군을 담은 내장 사전을 활용합니다. 작사가, 시인, 래퍼, 축하 카드 작성자, 학생 등 창작 흐름을 끊지 않고 딱 맞는 소리를 찾고 싶은 사람에게 든든한 도구입니다.

사용법은 간단합니다. 단어 하나를 입력하면 운이 맞는 결과 목록이 나타나고, 그중에서 자신의 문장에 어울리는 것을 고르면 됩니다. 노랫말을 짓거나 시를 다듬고, 기억에 남는 슬로건을 구상하거나 아이들이 읽으며 소리 패턴을 배우도록 돕는 데 두루 유용합니다.

이 도구는 흔한 영어 운 단어군에 초점을 맞추고 입력한 철자 그대로 단어를 대조하므로, 평소처럼 정확하게 철자를 입력하면 가장 좋은 결과를 얻습니다. 모든 작업이 브라우저에서 실행되어 검색이 빠르고 사적이며 가입도 필요 없습니다.

자주 묻는 질문

코드 구현

# Simple rhyme finder using CMU Pronouncing Dictionary
# pip install pronouncing
import pronouncing

def find_rhymes(word: str) -> list[str]:
    """Find all words that rhyme with the given word."""
    rhymes = pronouncing.rhymes(word)
    return sorted(set(rhymes))

# Example usage
word = "light"
rhyming_words = find_rhymes(word)
print(f"Words that rhyme with '{word}':")
for w in rhyming_words[:20]:
    print(f"  {w}")

# Get phonetic representation
phones = pronouncing.phones_for_word(word)
print(f"\nPhonetic: {phones}")

# Find words with same ending sound
def find_by_suffix(phones_list: list[str], suffix: str) -> list[str]:
    """Find words with a specific phonetic ending."""
    results = []
    for phones in phones_list:
        stress = pronouncing.stresses(phones)
        if stress.endswith(suffix):
            results.append(phones)
    return results

Comments & Feedback

Comments are powered by Giscus. Sign in with GitHub to leave a comment.