Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

for x in y(): how does this work? [duplicate]

I was looking for code to spin a cursor in the terminal and found this. I was wondering what was happening in the code. In particular for c in spinning_cursor(): I've never seen this syntax. Is it because I am returning one element from a generator at a time with yield, and this is assigned to c? Any other examples of this for x in y() use?

import sys import time  def spinning_cursor():     cursor='/-\|'     i = 0     while 1:         yield cursor[i]         i = (i + 1) % len(cursor)  for c in spinning_cursor():     sys.stdout.write(c)     sys.stdout.flush()     time.sleep(0.1)     sys.stdout.write('\b') 
like image 293
Paul Avatar asked May 10 '13 13:05

Paul


Video Answer


2 Answers

Using yield turns a function into a generator. A generator is a specialized type of iterator. for always loops over iterables, taking each element in turn and assigning it to the name(s) you listed.

spinning_cursor() returns a generator, the code inside spinning_cursor() doesn't actually run until you start iterating over the generator. Iterating over a generator means the code in the function is executed until it comes across a yield statement, at which point the result of the expression there is returned as the next value and execution is paused again.

The for loop does just that, it'll call the equivalent of next() on the generator, until the generator signals it is done by raising StopIteration (which happens when the function returns). Each return value of next() is assigned, in turn, to c.

You can see this by creating the generator on in the Python prompt:

>>> def spinning_cursor(): ...     cursor='/-\|' ...     i = 0 ...     while 1: ...         yield cursor[i] ...         i = (i + 1) % len(cursor) ...  >>> sc = spinning_cursor() >>> sc <generator object spinning_cursor at 0x107a55eb0> >>> next(sc) '/' >>> next(sc) '-' >>> next(sc) '\\' >>> next(sc) '|' 

This specific generator never returns, so StopIteration is never raised and the for loop will go on forever unless you kill the script.

A far more boring (but more efficient) alternative would be to use itertools.cycle():

from itertools import cycle  spinning_cursor = cycle('/-\|') 
like image 54
Martijn Pieters Avatar answered Sep 20 '22 15:09

Martijn Pieters


In Python, the for statement lets you iterate over elements.

According the documentation :

Python’s for statement iterates over the items of any sequence (a list or a string), in the order that they appear in the sequence

Here, the element will be the return value of spinning_cursor().

like image 24
aymericbeaumet Avatar answered Sep 22 '22 15:09

aymericbeaumet