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

推荐订阅源

A
About on SuperTechFans
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
I
InfoQ
C
Check Point Blog
IT之家
IT之家
MyScale Blog
MyScale Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
Last Week in AI
Last Week in AI
GbyAI
GbyAI
P
Proofpoint News Feed
量子位
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
B
Blog
T
The Blog of Author Tim Ferriss
H
Help Net Security
云风的 BLOG
云风的 BLOG

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
The Bilingual Developer: Python and Go Looping & Iteration
Ezeana Micheal · 2026-06-13 · via DEV Community

In the last article, I wrote about how programs make decisions using conditionals. We went through how a program can make a decision, choosing one path over another based on whether a condition is true or false.

But what if we need to perform the same action multiple times? Let's say you have a list of about 1,000 users and want to email each of them. You wouldn't write the email-sending code 1,000 times. Instead, you would write it once and have the program repeat it for each user. This is where looping comes in.

Looping allows a program to repeatedly execute a block of code until a condition is met or until all items in a collection have been processed. It's one of the most powerful concepts in programming because it helps us automate repetitive tasks and work with large amounts of data efficiently. Whether you're building a web application, analyzing data, processing files, or developing APIs, you'll find loops everywhere. Let's see how Python and Go approach this concept.

Understanding Iteration

Iteration simply means moving through a collection of data one item at a time. For example, if you have:

students = ["John", "Sarah", "David"]

Iteration means accessing:

  • John
  • Sarah
  • David

one after another. Loops are the mechanism that makes iteration possible. We will now consider some types of loops, first the for loop.

The For Loop

A for loop is used when you want to repeat something a specific number of times or go through a collection of items.

Python's Approach: for item in sequence

Python's for loop is designed around iteration. Instead of asking you to manage counters manually, Python allows you to directly loop through a sequence.

students = ["John", "Sarah", "David"]  
for student in students:  
    print(student)  

If you read that aloud, it almost sounds like English: “For each student in students, print the student.” That's one of the reasons Python is often praised for readability. Python also provides the range() function when you want to repeat something a specific number of times.

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

Output:

0  
1  
2  
3  
4  

We can note that Python focuses less on how the loop works internally and more on what you're trying to accomplish.

Go's Approach: The Universal for Keyword

Instead of providing separate loop structures for different situations, Go uses a single keyword: for. This one keyword handles almost every looping scenario.

A traditional Go for loop looks like this:

for i := 0; i < 5; i++ {  
    fmt.Println(i)  
}  

This structure contains three parts: initialization; condition; post-action

In this example:

  • i := 0 initializes the counter
  • i < 5 determines how long the loop runs (in this case limiting to 5)
  • i++ updates the counter by 1 after each iteration

When iterating over collections, Go uses the range keyword.

students := []string{"John", "Sarah", "David"}

for index, student := range students {  
    fmt.Println(index, student)  
}  

Unlike Python, Go exposes both the position and the value by default.

This reflects Go's preference for being explicit about what's happening during execution.

The While Loop

Not every situation involves iterating through a collection. Sometimes you want code to keep running as long as a condition remains true.

For example:

  • Keep asking for a password until the user enters the correct one.
  • Continue processing requests while the server is running.
  • Retry an operation until it succeeds.

This is where while loops become useful.

Python's Explicit while Loop

Python provides a dedicated keyword for this purpose:

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

The logic is straightforward, It continues running this block while the condition remains true and each time the loop runs, the condition is checked again So once the condition becomes false, the loop stops.

Go's Approach: Using for as a While Loop

Go does not have a while keyword.

Instead, Go reuses its universal for loop. To create while-loop behavior, you simply remove the initialization and post-action sections.

count := 0  
for count < 5 {  
    fmt.Println(count)  
    count++  
}  

Infinite Loops

Sometimes a loop is intended to run forever until something inside it stops execution.

Python:

while True:  
    print("Running...")  

Go:

for {  
    fmt.Println("Running...")  
}  

You'll often see these in:

  • Web servers
  • Background workers
  • Event listeners
  • Real-time systems

Breaking and Continuing

To understand breaking and continuing, we should understand that not every loop should run to completion. Sometimes we want to stop a loop early or skip a particular iteration. This is where break and continue become useful.

Using break

The break statement immediately terminates the loop.

Python example:

for number in range(10):  
    if number == 5:  
        break  
    print(number)  

Output:

0  
1  
2  
3  
4  

The moment the value reaches 5, the loop stops completely. Go works the same way:

for i := 0; i < 10; i++ {  
    if i == 5 {  
        break  
    }

    fmt.Println(i)  
}  

Again, execution stops as soon as the break statement is reached.

Using continue

The continue statement is slightly different. Instead of stopping the loop, it skips the current iteration and moves to the next one.

Python:

for number in range(5):  
    if number == 2:  
        continue  
    print(number)  

Output:

0  
1  
3  
4  

Notice that 2 is skipped. Go behaves the same way:

for i := 0; i < 5; i++ {  
    if i == 2 {  
        continue  
    }

    fmt.Println(i)  
}  

The current iteration is skipped, but the loop itself continues running.

Python's Angle vs Go's Angle

Looking at loops gives us another glimpse into the philosophy of both languages.

Python's Angle

Python is designed to make iteration feel natural.

  • for item in sequence
  • Dedicated while keyword
  • Readable syntax
  • Focus on expressing intent clearly

Python often hides implementation details so you can focus on solving the problem.

Go's Angle

Go prefers consistency over having many specialized constructs.

  • One loop keyword (for)
  • Multiple looping styles using the same structure
  • Explicit control over loop behavior
  • Less language complexity

Go's mindset is:

Learn one loop mechanism and use it everywhere.

Finally

Looping is one of the fast ways programs get work done in programming. Without loops, applications would struggle to process lists, handle user input, analyze data, or automate repetitive tasks. Python gives you specialized, highly readable constructs for iteration. Go gives you a single, versatile tool that can adapt to different situations.Both approaches are effective.

The real skill as a bilingual developer isn't memorizing syntax, but it's understanding the underlying concept. Once you understand what a loop is trying to achieve, switching between Python and Go becomes much easier. The syntax may change, but the logic remains exactly the same: repeat a task until you're done. Thanks for reading this article, hit the like and comment what you think, thanks.