September 2016
Intermediate to advanced
454 pages
9h 23m
English
A few exercises were already suggested. Let's list a few of these. (Note that the solution are not provided for these exercises.):
for loop. Compare the timings of a nested for loop and the list comprehension. Here is an example:x = [ i*j for i in range(4) for j in range(4)]
[] to the round brackets ().Read now
Unlock full access