Generators : Generator Function : Buildin Function PYTHON examples


PYTHON examples » Buildin Function » Generator Function »

 

Generators


Generators


def reverse(data):
    for index in range(len(data)-1, -1, -1):
        yield data[index]
  
for char in reverse('golf'):
     print char


           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Buildin Function
» Generator Function