What are the differences when you say to show 200 words instead of
50?
Purpose of parameters delimeter and
quotechar:
Purpose of d[artist] = []?
Explain the purpose both in terms of what the list comprehension
below does and in how it fits with the other lines/list
comprehensions in determining the top 30 artists.
tosort = [(len(t[1]),t[0]) for t in info]
What's the purpose of the slice info[-30:]?
What are the top 5 artists?
Part 2: SpeedDial
Answer for first paper-pencil problem:
Total number of key-presses with no speed-dial:
total = sum([ ])
Number of key-presses saved
when a six-digit number is dialed 12 times and the number is put in a
speed-dial slot? Why?
List with save[i] being key-presses saved:
saved =