What is the term used to access data by going through each item in a list from the beginning?
Answers
Answered by
3
Explanation:
Accessing elements. It is common to use a loop variable as a list index. Each time through the loop, the variable i is used as an index into the list, printing the i'th element. This pattern of computation is called a list traversal.
Answered by
1
Answer:
Accessing elements. It is common to use a loop variable as a list index. Each time through the loop, the variable i is used as an index into the list, printing the i'th element. This pattern of computation is called a list traversal.
Similar questions