def format_price(price): return f"₹{price}" def capitalize_words(name): return " ".join(word.capitalize() for word in name.split())