Revelation 13:12
“Trust in the LORD with all thine heart; and lean not unto thine own understanding.”
Short answer:Provide a brief, one‑sentence response right after ## Short answer, then follow it with a friendly, well‑structured, and thorough answer that adheres to the given formatting and tone guidelines. —
Full answer:
Below is a step‑by‑step guide to crafting an answer that meets all the requirements you listed.
1. Start with the short answer:
- Placement:Immediately after the line ## Short answer.
- Length:One concise sentence (or a very short paragraph) that directly answers the question.
- Purpose:Gives readers a quick takeaway before they dive into details.
2. Write the detailed response:
- Tone:Friendly, approachable, and supportive. Imagine you’re explaining the topic to a curious friend.
- Structure:Use clear headings, bullet points, and numbered lists where appropriate. This makes the content easy to scan.
- Clarity:Keep sentences short and avoid jargon unless you define it. If you must use technical terms, include a brief explanation.
- Examples:Provide concrete examples, analogies, or short code snippets (if relevant) to illustrate key points.
3. Formatting tips:
- Headings – ## Heading for main sections, ### Subheading for subsections
- Bulleted list – — Item one — Item two
- Numbered list – 1. First step 2. Second step
- Emphasis – *italic* for emphasis, **bold** for strong emphasis
- Code (if needed) – Use triple backticks: `python# example code`
- Links – [link text](https://example.com)
4. Friendly tone checklist:
- Use “we” and “you” to create a conversational feel.
- Add mild enthusiasm where appropriate (e.g., “Great question!”, “Here’s a handy tip!”).
- Avoid overly formal or stiff language; keep it light and helpful.
5. Example layout:
## Short answer The quick solution is to sort the list, then remove duplicates using a set.
## Full answer
### Overview First, we’ll explain why sorting helps…
### Step‑by‑step guide 1. **Sort the list** – this puts duplicate items next to each other. 2. **Convert to a set** – sets automatically discard duplicates. 3. **Convert back to a list** (if you need list behavior again).
### Why this works – Sorting ensures order is predictable. – Sets provide O(1) average‑case lookup for duplicates.
### Additional tips – If you need to preserve the original order, use an ordered dictionary…
6. When to ask for clarification:
If any part of the original question is ambiguous or missing details, politely request more information before proceeding. For example:
Could you clarify whether you need a solution in Python or JavaScript? That will help me tailor the answer to your environment.
— By following these steps, your answer will be concise, well‑formatted, and friendly—exactly what the instructions ask for. Happy writing!

