Example: It's really annoying to type a list of strings in python:
["January", "February", "March", "April", ...]
I often do something like this to save me having to type quotation marks all over the place:
"January February March April May June July August ...".split()
Those took the same amount of time, and I got 2x the # of months typed in. Another example:
[('a', '9'), ('4', '3'), ('z', 'x')...]
instead of:
map(tuple, "a9 43 zx".split())
which took much less time.