摘要:
>>> aList = [1,2,3,4,5,6,7]>>> aList[2:][3, 4, 5, 6, 7]>>> aList[10:][]>>> aList[-2:][6, 7]>>> aList[:2][1, 2]>>> aList[:-2][1, 2, 3, 4, 5] 1 def appe... 阅读全文
posted @ 2015-04-10 13:58
庄稼汉玩Linux
阅读(168)
评论(0)
推荐(0)
浙公网安备 33010602011771号