Home Backend Development Python Tutorial Detailed explanation of iterator and generator instance methods in Python

Detailed explanation of iterator and generator instance methods in Python

Mar 31, 2017 am 09:45 AM

This article mainly introduces the relevant information on detailed examples of iterators and generators in Python. Friends in need can refer to

Python Detailed explanation of iterators and generator examples in Python

This article summarizes some related knowledge of iterators and generators in Python by focusing on different application scenarios and their solutions, as follows:

1. Manually traverse the iterator

Application scenario: I want to traverse all the elements in an iterableobject, but I don’t want to use a for loop

Solution: Use next()function, and catch the StopIteration exception

def manual_iter():
  with open('/etc/passwd') as f:
    try:
      while True:
        line=next(f)
        if line is None:
          break
        print(line,end='')
      except StopIteration:
        pass
Copy after login
#test case
items=[1,2,3]
it=iter(items)
next(it)
next(it)
next(it)
Copy after login

2. Agent iteration

Application scenario: Want to perform an iterative operation directly on a container object containing a list, tuple or other iterable object

Solution: Define an iter() method to perform the iterative operation Proxy to the object inside the container

Example:

class Node:
  def init(self,value):
    self._value=value
    self._children=[]
  def repr(self):
    return 'Node({!r})'.fromat(self._value)
  def add_child(self,node):
    self._children.append(node)
  def iter(self):
    #将迭代请求传递给内部的_children属性
    return iter(self._children)
Copy after login
#test case
if name='main':
  root=Node(0)
  child1=Node(1)
  child2=Nide(2)
  root.add_child(child1)
  root.add_child(child2)
  for ch in root:
    print(ch)
Copy after login

3. Reverse iteration

Application scenario: Want to iterate a sequence in reverse

Solution: Use the built-in reversed() function or implement reversed() on a custom class

Example 1

a=[1,2,3,4]
for x in reversed(a):
  print(x) #4 3 2 1
f=open('somefile')
for line in reversed(list(f)):
  print(line,end='')
#test case
for rr in reversed(Countdown(30)):
  print(rr)
for rr in Countdown(30):
  print(rr)
Copy after login

Example 2

class Countdown:
  def init(self,start):
    self.start=start
  #常规迭代
  def iter(self):
    n=self.start
    while n > 0:
      yield n
      n -= 1
  #反向迭代
  def reversed(self):
    n=1
    while n <p style="text-align: left;"><strong>4. Selective iteration</strong></p><p style="text-align: left;">Application scenario: I want to traverse an iterable object, but I am not interested in some elements at the beginning of it and want to skip</p><p style="text-align: left;">Solution : Use itertools.dropwhile()</p><p style="text-align: left;">Example 1</p><pre class="brush:php;toolbar:false">with open('/etc/passwd') as f:
  for line in f:
    print(line,end='')
Copy after login

Example 2

from itertools import dropwhile
with open('/etc/passwd') as f:
  for line in dropwhile(lambda line:line.startwith('#'),f):
    print(line,end='')
Copy after login

5. Iterate multiple sequences simultaneously

Application scenario: Want to iterate multiple sequences at the same time and take an element from one sequence each time

Solution: Use the zip() function

Detailed explanation of iterator and generator instance methods in Python

Detailed explanation of iterator and generator instance methods in Python

Detailed explanation of iterator and generator instance methods in Python

Detailed explanation of iterator and generator instance methods in Python

6. Iteration of elements on different collections

Application scenario: Want to perform the same operation on multiple objects, but these objects are in different containers

Solution: Use the itertool.chain() function

Detailed explanation of iterator and generator instance methods in Python

7. Expand nested sequences

Application scenario: Want to expand a multi-level nested sequence into a single-level list

Solution: Use RecursionGenerator containing yield from statement

Example

from collections import Iterable
def flatten(items,ignore_types=(str,bytes)):
  for x in items:
    if isinstance(x,Iterable) and not isinstance(x,ignore_types):
      yield from flatten(x)
    else:
      yield x
Copy after login
#test case
items=[1,2,[3,4,[5,6],7],8]
for x in flatten(items):
  print(x)
Copy after login

Thank you for reading, I hope it can help everyone, thank you for your support of this site!

The above is the detailed content of Detailed explanation of iterator and generator instance methods in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? Apr 01, 2025 pm 11:15 PM

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

What are regular expressions? What are regular expressions? Mar 20, 2025 pm 06:25 PM

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.

How does Uvicorn continuously listen for HTTP requests without serving_forever()? How does Uvicorn continuously listen for HTTP requests without serving_forever()? Apr 01, 2025 pm 10:51 PM

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

What are some popular Python libraries and their uses? What are some popular Python libraries and their uses? Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to dynamically create an object through a string and call its methods in Python? How to dynamically create an object through a string and call its methods in Python? Apr 01, 2025 pm 11:18 PM

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

See all articles