Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Tag: iterable

reversed in python , a tutorial

Posted on July 30, 2019October 29, 2020 by mohamad wael

What is reversed?

The reversed class is used to create a reverse iterator from an object .

This object , must either implement the __getitem__ and the __len__ special methods . In this case reverse will create an iterator from

… Read More
python __reversed__, generator, iterable, reversed

Python iterable and iterator a tutorial

Posted on July 17, 2019October 29, 2020 by mohamad wael

what is an iterable ?

In python , objects are abstraction of data , they have methods that work with data , and help us to manipulate it . If we take a look at a list , and see … Read More

python iterable, iterator, next, python