Given the expressions:
>>> l = [1,2,3] >>> l[10:20] = [4,5] >>> l [1, 2, 3, 4, 5]
Why doesn\'t Python nag about th