摘要: ctrl+tab可以进行跳转 https://blog.csdn.net/luckygirl0809/article/details/79929491 阅读全文
posted @ 2018-10-18 15:33 GXTon 阅读(964) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/w113691/article/details/80385534 阅读全文
posted @ 2018-10-18 14:28 GXTon 阅读(1744) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/koukehui0292/article/details/82993958 Python的 深度拷贝: import copy d=copy.deepcopy(alist) 阅读全文
posted @ 2018-10-18 11:29 GXTon 阅读(158) 评论(0) 推荐(0) 编辑
摘要: test =[ [1, 2, 3], [4, 5, 6], [7, 8, 9]] #这个就可以看做是二维数组了,直接创建print(test)print(test[:][1]) #这里会输出【4,5,6】 print(test[1][:]) #这里会输出【4,5,6】 print(test[1]) 阅读全文
posted @ 2018-10-18 09:57 GXTon 阅读(3354) 评论(0) 推荐(0) 编辑
摘要: test =[ [1, 2, 3], [4, 5, 6], [7, 8, 9]] #这个就可以看做是二维数组了,直接创建print(test)print(test[:][1]) #这里会输出【4,5,6】 print(test[1][:]) #这里会输出【4,5,6】 print(test[1]) 阅读全文
posted @ 2018-10-18 08:55 GXTon 阅读(257) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/btchenguang/archive/2012/01/20/2328320.html 阅读全文
posted @ 2018-10-18 08:44 GXTon 阅读(109) 评论(0) 推荐(0) 编辑