Course navigation
Claude ChatLesson 1 of 12

Introduction to Claude Chat

Claude Chat is the main conversation window at claude.ai. You send messages, Claude replies in a thread, and you follow up — for writing, file questions, code help, and similar tasks.

What Claude Chat is

Claude Chat is the conversation interface: you send messages and Claude replies in a thread. It runs on the web at claude.ai, in the Claude Desktop app, and on mobile (iOS and Android).

Claude Code works in your terminal on project files. Cowork runs tasks on your desktop. Chat is the standard interface for short questions and longer threads.

Visit claude.ai, sign in with Google or email, and type your first message. The free plan covers web, iOS, Android, and desktop — no credit card required.

The chat interface

Three main areas: a sidebar listing past conversations, a model selector at the top, and the chat area where messages appear.

claude.ai
+ New chat
Today
Python data analysis
Write a cover letter
Explain quantum computing
Yesterday
Summarize this PDF
Debug my React app
Claude Sonnet 4
Explain how Python list comprehensions work, with a simple example.
C

A list comprehension builds a new list from an existing one in a single line:

# Without comprehension
squares = []
for n in range(5): squares.append(n ** 2)
# With comprehension
squares = [n ** 2 for n in range(5)]
# [0, 1, 4, 9, 16]

Format: [expression for item in iterable]

Reply to Claude…Attach
Sidebar, model selector, and message thread

What you can do in chat

Attach files, paste text, or describe what you need:

Write and edit

Drafts, emails, essays, scripts, reports — any format.

Code

Write, explain, debug, or refactor code in any language.

Summarize

Condense long documents or meeting notes into key points.

Analyze images

Describe photos, charts, or screenshots you upload.

Search the web

Get up-to-date answers when web search is enabled.

Extended thinking

Deeper reasoning for maths, logic, or multi-step problems.

Translate

Work across languages or explain phrasing nuances.

Brainstorm

Generate ideas, compare options, or test arguments.

Starting a useful conversation

Specific prompts produce better results. Compare these two approaches for the same task:

ApproachPromptWhy it matters
Vague“Help me with my email.”Claude must guess the audience, purpose, and tone.
Specific“Write a short, polite follow-up email to a client who hasn't replied to my project proposal in a week. Keep it under 100 words.”Format, recipient, context, tone, and length are all defined.
  • Give context — who you are, what the output is for, and who will read it.
  • Set the format — bullet list, word limit, JSON, or another structure.
  • Refine in follow-ups — ask for shorter text, a formal tone, or a new section.
  • Attach files — upload a PDF, image, CSV, or code file and ask Claude to work with it directly.

Organising with Projects

Projects (Pro and above) group related conversations under one name. Each project can have a system prompt that applies to every chat, plus uploaded files Claude references automatically.

My Projects
Contract Review
Uploaded: contracts/
14 chats
Q2 Data Analysis
Uploaded: sales.csv
8 chats
Marketing Copy
System: brand voice
22 chats
Python Tutoring
System: teach gently
31 chats
Projects group chats with shared files and instructions
Example: create a "Contract Review" project, upload your templates, and set instructions like "Flag missing clauses. Reply in bullet points." Every new chat in that project starts with those rules.

Choosing a model

Switch models any time using the selector at the top of the chat.

ModelSpeedBest for
HaikuFastestQuick questions, simple tasks, fast lookups
SonnetBalancedWriting, analysis, coding, general questions
OpusDeliberateComplex analysis, long research, multi-step projects
Sonnet is the right default for most day-to-day work. Use Haiku when you want faster replies, or Opus for harder multi-step tasks.

Chat, Cowork, or Claude Code

Anthropic ships three main tools for different jobs:

You want to…ChatCoworkClaude Code
Ask questionsYes
Write or analyseYesYes — runs steps automaticallyYes — with files
Edit local filesYes — full file accessYes — in repo
Run multi-step tasksYes — automated stepsYes — code tasks
Build softwarePair programming (manual)Primary use case
Works onWeb, mobile, desktopClaude DesktopTerminal / IDE
Start with Chat. If you repeat the same multi-step workflow — editing files on disk or working inside a codebase — try Cowork or Claude Code.

Before you continue

  • Claude Chat runs on web, desktop, and mobile — free to start at claude.ai.
  • Be specific about audience, format, and length; refine with follow-up messages.
  • Projects (Pro+) group chats with shared files and a system prompt.
  • Default to Sonnet; switch to Haiku for speed or Opus for depth.
  • For local file edits or command execution, use Cowork or Claude Code instead.

What's Next

Core Capabilities — writing, summaries, research, brainstorming, maths, code help, and translation, with short examples.