fork download
  1. class YobaIterator:
  2. def __next__(self):
  3. return 42
  4.  
  5. iterator = YobaIterator()
  6.  
  7. print(next(iterator))
  8. print(next(iterator))
  9. print(next(iterator))
Success #stdin #stdout 0.02s 9060KB
stdin
Standard input is empty
stdout
42
42
42