python的切片
摘要:
切片 取一个list或tuple的部分元素是非常常见的操作。比如,一个list如下: >>> L = ['Michael', 'Sarah', 'Tracy', 'Bob', 'Jack'] 取前3个元素,应该怎么做? 笨办法: >>> [L[0], L[1], L[2]] ['Michael', 阅读全文
posted @ 2018-04-02 14:44 python_李典 阅读(149) 评论(0) 推荐(0) 编辑