摘要: list 格式: test_list = ["a",123,[1,"b"]] 索引: >>>print(test_list[0]) "a" 切片: >>>print(test_list[0:2]) ["a",123] >>>print(test_list[2:len(test_list)]) [1, 阅读全文
posted @ 2018-10-17 21:46 _chy 阅读(189) 评论(0) 推荐(0)