0PricingLogin
AI Prompt Engineering · Lesson

Professional Writing Styles

Journalistic, persuasive, instructional, and technical writing modes.

Styles That Structure Thinking

Professional writing is not just about tone — it is about structure and intent. Different professions have evolved distinct writing styles, each designed to serve a specific communication goal.

Knowing these styles and how to request them gives you access to a library of proven writing patterns: journalistic, persuasive, instructional, and technical.

Journalistic Style: The Inverted Pyramid

Journalistic style uses the inverted pyramid: most important information first, supporting details second, background last.

Characteristics:

  • Lead sentence answers: who, what, when, where, why
  • Each paragraph can stand alone
  • No setup — get to the point immediately
  • Short sentences and paragraphs
  • No conclusions — the story speaks for itself
import anthropic

client = anthropic.Anthropic(api_key='sk-ant-your-key-here')

response = client.messages.create(
    model='claude-opus-4-5',
    max_tokens=200,
    messages=[{
        'role': 'user',
        'content': (
            'Write in journalistic inverted-pyramid style. '
            'Lead immediately with the most important fact. '
            'No setup, no preamble. Short sentences, short paragraphs. '
            'Max 100 words.\n\n'
            'Announce: Anthropic has released Claude 4, achieving a new benchmark score of 94% '
            'on a standard reasoning test, surpassing previous models by 8 percentage points. '
            'Available via API today. Pricing unchanged.'
        )
    }]
)
print(response.content[0].text)

All lessons in this course

  1. Formal vs Informal Tone
  2. Specifying Your Audience
  3. Professional Writing Styles
  4. Adjusting Vocabulary Level
← Back to AI Prompt Engineering