Sign In

λ§›μ§‘ μ†Œκ°œπŸ–

λ§›μ§‘ μ†Œκ°œ μ½”λ”©
# λ§›μ§‘ 정보 (κ΅­λ¦½λΆ€κ²½λŒ€ν•™κ΅ λŒ€μ—°μΊ νΌμŠ€ μ£Όλ³€ μ˜ˆμ‹œ)
restaurants = {
    'ν•œμ‹': [
        {'name': 'λŒ€μ—°λ™ κΉ€λ°₯천ꡭ', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ λŒ€μ—°λ™'},
        {'name': 'μ‚Όκ²Ήμ‚΄μ˜ μ‹ ', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ μš©ν˜Έλ™'},
    ],
    '양식': [
        {'name': 'μ΄νƒˆλ¦¬μ•ˆ λ ˆμŠ€ν† λž‘', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ λŒ€μ—°λ™'},
        {'name': '브런치 카페', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ λ¬Έν˜„λ™'},
    ],
    '쀑식': [
        {'name': 'μ€‘ν™”μš”λ¦¬', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ λŒ€μ—°λ™'},
        {'name': '짜μž₯λ©΄ λ§›μ§‘', 'location': 'λΆ€μ‚°κ΄‘μ—­μ‹œ 남ꡬ μš©ν˜Έλ™'},
    ]
}

def show_results(category):
    category = category.strip()
    if category not in restaurants:
        print("🚫 ν•΄λ‹Ή μΉ΄ν…Œκ³ λ¦¬λŠ” μ‘΄μž¬ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. λ‹€μ‹œ μ‹œλ„ν•΄μ£Όμ„Έμš”.")
        return

    print(f"\nπŸ“‹ [{category}] λ§›μ§‘ 리슀트:")
    for restaurant in restaurants[category]:
        print(f"βœ… {restaurant['name']} - {restaurant['location']}")

# μ‹€ν–‰ μ˜ˆμ‹œ
print("🍽 κ΅­λ¦½λΆ€κ²½λŒ€ν•™κ΅ λŒ€μ—°μΊ νΌμŠ€ μ£Όλ³€ λ§›μ§‘ μΆ”μ²œ μ‹œμŠ€ν…œ")
print("μΉ΄ν…Œκ³ λ¦¬λ₯Ό μž…λ ₯ν•˜μ„Έμš” (예: ν•œμ‹, 양식, 쀑식):")
category_input = input("> ")
show_results(category_input)

μ½”λ”© 볡사 ν›„ μ•„λž˜ μ‚¬μ΄νŠΈ μ ‘μ†ν•΄μ„œ λΆ™μ—¬λ„£κΈ° ν›„ RUN μ‹€ν–‰