Skip to main content
iter

iter

9.2
An object that gives items from a list one by one
  • noun
  • /ˈɪtər/
  • Specialized
translation icon : iterador
  • The function creates an iter that allows you to access each element in the list in order.

Examples

  • When using Python, the iter provides a convenient way to iterate through data structures.

  • In programming, an iter is used to cycle through items in a collection one at a time.

  • OK, so iter returns an iterator, but it doesn't.

Synonyms

iterator
vsiter
  • Specialized
1 6.3

A tool in programming that goes through items in a list one by one

is the shorter alternative name for the same programming concept

Surface Forms

iter singular
iters plural

Etymology

Iter in programming is short for iterator, which you can think of as taking a small trip through a list and giving you one item at a time. That's why an iter lets you move step by step through a collection.