上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页
摘要: https://blog.csdn.net/weixin_39750084/article/details/81435454 阅读全文
posted @ 2018-10-19 16:10 GXTon 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(3353) 评论(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) 编辑
摘要: python中矩阵的实现是靠序列,,, 序列有很多形式, 其实矩阵是现实生活中的东西,把现实生活中的结构转换到程序中。 就需要有个实现的方法,而这种路径是多种多样的。 下面给出一个把矩阵转换成python中的序列、 然后进行矩阵的转置 # -*- coding: utf-8 -*-#下面的测试是关于 阅读全文
posted @ 2018-09-29 09:02 GXTon 阅读(18877) 评论(0) 推荐(0) 编辑
摘要: Ctrl+C 用这个有时候也是不行的,因为如果一直有图片在闪,那么就是直接关了吧 之前记错了一直用ctrl+x不行 导致崩溃,不能重启spyder 但是没有敢再试 阅读全文
posted @ 2018-09-24 16:21 GXTon 阅读(1270) 评论(0) 推荐(0) 编辑
摘要: 引用自:https://blog.csdn.net/mikedadong/article/details/53047500 阅读全文
posted @ 2018-08-31 14:45 GXTon 阅读(104) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页