[Tutor] A dictionary question

Phil phillor9 at gmail.com
Fri Nov 19 19:48:39 EST 2021


> please start writing standard Python for loops, e.g. :-
>
> for row in row_list:
>     print(row, end=' ')

for i in range(len(row_list)):
     print(row_list[i], end=' ')

The result is the same, however, I suppose it does matter and I will try 
to improve.

-- 

Regards,
Phil



More information about the Tutor mailing list