If you think of something else than code under,give an example of list and task. >>> l = [1,2,3,4] >>> l[:2] [1, 2] >>> l[2:] [3, 4] >>> #Sum up last 2 ...
確定! 回上一頁