For Loops

–Python sequences includes data types like: range, list, string, … – The body of the loop repeats once for each item in the sequence – On each iteration, the variable is bound to the next item in the sequence ................
................