Computer Science, asked by ns389093, 1 month ago

which give the starting value of loop

Answers

Answered by YashodharPalav5109
1

Answer:

It steps through the items of lists, tuples, strings, the keys of dictionaries and other iterables. The Python for loop starts with the keyword "for" followed by an arbitrary variable name, which will hold the values of the following sequence object, which is stepped through.

Answered by Anonymous
1

Answer:

It steps through the items of lists, tuples, strings, the keys of dictionaries and other iterables. The Python for loop starts with the keyword "for" followed by an arbitrary variable name, which will hold the values of the following sequence object, which is stepped through.

Similar questions