About 364,000,000 results
Open links in new tab
  1. Get started with Microsoft Loop

    Microsoft Loop is a transformative co-creation experience that brings together teams, content, and tasks across your tools and devices. Loop combines a powerful and flexible canvas with portable …

  2. How to Create Loops in Python (With Examples) - wikiHow

    Feb 20, 2025 · Learn how to create a loop using Python In Python, and many other programming languages, you will need to loop commands several times, or until a condition is fulfilled. It is easy, …

  3. Loops in Python - For, While and Nested Loops - GeeksforGeeks

    Oct 4, 2025 · Loops in Python are used to repeat actions efficiently. The main types are For loops (counting through items) and While loops (based on conditions). For loops is used to iterate over a …

  4. Python For Loops - W3Schools

    A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). This is less like the for keyword in other programming languages, and works more like an …

  5. Loops - Learn Python - Free Interactive Python Tutorial

    There are two types of loops in Python, for and while. For loops iterate over a given sequence. Here is an example: For loops can iterate over a sequence of numbers using the "range" and "xrange" …

  6. Python For Loop and While LoopPython Land Tutorial

    Sep 5, 2025 · A Python for-loop allows you to repeat the execution of a piece of code. This tutorial shows how to create proper for-loops and while loops

  7. A Beginner's Guide to Loops - DEV Community

    Nov 30, 2024 · We’ll cover three types of loops in this article — for loop, while loop, and do-while loop. These loops basically do the same thing (repeating a block of code until the condition returns false), …

  8. Python for Loop (With Examples) - Programiz

    The for loop allows you to iterate through each element of a sequence and perform certain operations on it. In this tutorial, we will explore how to use the for loop in Python, with the help of examples.

  9. Mastering the Art of Looping: A Comprehensive Guide

    May 16, 2025 · Whether you opt for a for loop, while loop, or do-while loop, the key is to choose the right type based on your needs and follow best practices for optimum performance.

  10. Looping code - Learn web development | MDN - MDN Web Docs

    Dec 3, 2025 · Here we'll look at the loop structures available in JavaScript that handle such needs. An understanding of HTML and the fundamentals of CSS, familiarity with JavaScript basics as covered …