惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
量子位
爱范儿
爱范儿
L
LangChain Blog
Vercel News
Vercel News
A
About on SuperTechFans
腾讯CDC
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
美团技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Python for Beginners — Part 4: Operators & Control Flow
Ramesh S · 2026-06-23 · via DEV Community

Part 4 of a beginner-friendly series on learning Python from scratch.

In Part 3, we learned about booleans — values that are either True or False — and the comparison operators that produce them. Now it's time to put that logic to work.

This is where your programs start to come alive: making decisions, repeating tasks, and responding to different situations. Control flow is the backbone of every real program you'll ever write.

Decision-Making: If, Elif, Else

The most fundamental control flow tool is the if statement. It lets your program make a decision: if something is true, do this; otherwise, do that.

The if statement

age = 25

if age >= 18:
    print("You are an adult")

The syntax is simple:

  1. Write if followed by a condition
  2. End the line with a colon :
  3. Indent the code block that follows (4 spaces)

Only if the condition is True does the indented code run. If it's False, the code is skipped.

age = 15

if age >= 18:
    print("You are an adult")

print("This always prints")  # This runs regardless of the condition

Here, the first print runs only if age >= 18. The second print always runs because it's not indented under the if.

The else clause

Often you want to do something different if the condition is false:

age = 15

if age >= 18:
    print("You are an adult")
else:
    print("You are a minor")

The else block runs when the if condition is False.

The elif clause — multiple conditions

For more than two paths, use elif (short for "else if"). You can chain as many as you need:

score = 85

if score >= 90:
    print("Grade: A")
elif score >= 80:
    print("Grade: B")
elif score >= 70:
    print("Grade: C")
elif score >= 60:
    print("Grade: D")
else:
    print("Grade: F")

Python evaluates each condition from top to bottom and stops at the first True one. So for score = 85:

  1. Is 85 >= 90? No.
  2. Is 85 >= 80? Yes → prints "Grade: B" and stops.
  3. Everything after is skipped.

Important: Once one condition is True, the rest are not checked. If you have overlapping conditions, order them carefully.

Nested if statements

You can put if statements inside if statements:

age = 25
has_license = True

if age >= 18:
    if has_license:
        print("You can drive")
    else:
        print("You need a license first")
else:
    print("You must be 18 to drive")

This works, but too much nesting gets hard to read. Keep it shallow when possible.

Ternary Operator — Inline If

For simple, one-line decisions, Python has a compact syntax:

status = "adult" if age >= 18 else "minor"

This is equivalent to:

if age >= 18:
    status = "adult"
else:
    status = "minor"

Read it as: "Set status to 'adult' if age >= 18, else set it to 'minor'."

The Match Statement (Python 3.10+)

Python 3.10 introduced match, similar to switch in other languages. It's useful when you have one variable with many possible values:

day = "Monday"

match day:
    case "Monday":
        print("Start of the work week")
    case "Friday":
        print("Almost the weekend!")
    case "Saturday" | "Sunday":
        print("It's the weekend!")
    case _:
        print("Some other day")

The _ (underscore) acts like a default case — it matches anything not caught by previous cases.

Note: If you're using Python < 3.10, match won't work. Use if/elif/else instead. For now, this is nice-to-know, not essential.

Repeating Code: Loops

Loops let you run the same code multiple times without repeating it. There are two main types: while and for.

While loops — repeat until a condition is false

A while loop keeps running as long as its condition is True:

count = 1

while count <= 5:
    print(count)
    count = count + 1

Output:

1
2
3
4
5

This will print 1–5. Let's trace it:

  1. Is count <= 5? (1 <= 5) Yes → print 1, then count becomes 2
  2. Is count <= 5? (2 <= 5) Yes → print 2, then count becomes 3
  3. ... continues until count becomes 6
  4. Is count <= 5? (6 <= 5) No → loop exits

⚠️ Infinite loops: If you forget to change the condition, your loop runs forever:

count = 1
while count <= 5:
    print(count)
    # Oops, forgot to increment count — this runs forever!

If this happens, press Ctrl+C in your terminal to stop it.

For loops — repeat a specific number of times

A for loop is perfect when you know exactly how many times you want to repeat something. The most common pattern is using range():

for i in range(5):
    print(i)

Output:

0
1
2
3
4

range(5) generates the numbers 0, 1, 2, 3, 4 (note: 5 is not included). You can customize this:

range(5)        # 0, 1, 2, 3, 4
range(1, 6)     # 1, 2, 3, 4, 5 (start at 1, stop before 6)
range(0, 10, 2) # 0, 2, 4, 6, 8 (start at 0, stop before 10, step by 2)
range(10, 0, -1) # 10, 9, 8, 7, 6, 5, 4, 3, 2, 1 (count backward)

The variable i (or any name you choose) takes on each value from the range, one per loop iteration.

Iterating over strings and lists

for loops are also perfect for going through each character in a string or each item in a list:

word = "Python"

for letter in word:
    print(letter)

Output:

P
y
t
h
o
n

Or with a list:

fruits = ["apple", "banana", "cherry"]

for fruit in fruits:
    print(fruit)

Output:

apple
banana
cherry

We'll dive deeper into lists in Part 5, but this pattern is so common you'll see it everywhere.

Break and Continue

Sometimes you want to exit a loop early or skip to the next iteration. break and continue let you do this.

Break — exit the loop immediately

count = 1

while count <= 10:
    if count == 5:
        break  # Exit the loop
    print(count)
    count = count + 1

print("Loop ended")

Output:

1
2
3
4
Loop ended

When count reaches 5, break exits the loop. Nothing after the break in that iteration runs.

Continue — skip to the next iteration

for i in range(1, 6):
    if i == 3:
        continue  # Skip this iteration
    print(i)

Output:

1
2
4
5

When i == 3, continue jumps to the next iteration of the loop. The print(3) is never reached, but the loop keeps going.

Practical Examples

Example 1: Guessing game

secret = 42
guess = 0

while guess != secret:
    guess = int(input("Guess the number: "))

    if guess < secret:
        print("Too low!")
    elif guess > secret:
        print("Too high!")
    else:
        print("You got it!")

This keeps asking for guesses until the user gets it right.

Example 2: Multiplication table

number = 7

for i in range(1, 11):
    print(f"{number} × {i} = {number * i}")

Output:

7 × 1 = 7
7 × 2 = 14
7 × 3 = 21
... (up to 7 × 10 = 70)

Example 3: Finding even numbers

for i in range(1, 21):
    if i % 2 == 0:
        print(i)

Output:

2
4
6
8
10
12
14
16
18
20

(i % 2 == 0 is True for even numbers)

Why This Matters

Control flow is what separates a calculator from a real program. Every decision your code makes, every task it repeats, every time it reacts to different input — that's control flow at work. Master if statements and loops now, and you'll be amazed how much you can build.

The most common beginner mistakes:

  • Forgetting the colon (:) after if, else, for, while
  • Forgetting to indent the code block
  • Using = (assignment) instead of == (comparison) in conditions
  • Getting stuck in infinite loops (remember: Ctrl+C)

Once you internalize these patterns, they become automatic.


This is Part 4 of an 8-part beginner Python series. Catch up on Part 1: Getting Started & Syntax, Part 2: Variables, Data Types & Numbers, and Part 3: Strings & Booleans.