摘要: 1.Anaconda 直接在官网上下载速度会很慢,建议去清华镜像去下载需要的Anaconda的各个版本:Anaconda清华镜像地址 安装时,注意 在“Advanced Installation Options”中不要勾选“Add Anaconda to my PATH environment va 阅读全文
posted @ 2020-02-28 21:03 JohnYang819 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1.搭建 (1)控制面板 >程序 >将FTP服务器打勾 (2)输入iis,或者右键桌面-->管理-->服务和应用程序 >internet information service,右键网站,添加FTP站点。 (3)cmd输入ipconfig/all,查询本机ip地址,将Ip地址填入。 (4)打勾如下 阅读全文
posted @ 2020-02-28 13:40 JohnYang819 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: This blog is just shown for the most simple basic of internet programming based on two different machines sharing the same local net.While the client 阅读全文
posted @ 2020-02-26 16:09 JohnYang819 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Dive into RE in Python Standard re module in python is powerful to handle text manipulation,such as searching,matching,splitting etc, and it is necess 阅读全文
posted @ 2020-02-25 00:16 JohnYang819 阅读(269) 评论(0) 推荐(0) 编辑
摘要: Python中eval,exec这两个函数有着相似的输入参数类型和执行功能,因此在用法上经常出现混淆,以至经常用错,程序易抛出错误。下面主要通过这两个函数的语法来阐述区别,并用例子来进一步说明。 首先 看下官方文档对这两个函数的说明: (1)eval(expr, globals=None, loca 阅读全文
posted @ 2020-02-19 23:33 JohnYang819 阅读(531) 评论(0) 推荐(0) 编辑
摘要: Important note: You should always work on a duplicate of the course notebook. On the page you used to open this, tick the box next to the name of the 阅读全文
posted @ 2020-02-19 09:59 JohnYang819 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 梯度是微积分多元函数的一个重要概念,简单来说,梯度是一个向量,当函数上的一点按照该向量移动,函数值增加最大,该向量由函数分别对自变量的偏导值所构成。如果函数是二元函数,则梯度是二维向量,在自变量构成的平面上,如果函数是三元函数,则梯度是三维向量,在自变量构成的空间中。本文着重对它的上述的意义,进行形 阅读全文
posted @ 2020-02-09 15:29 JohnYang819 阅读(1753) 评论(0) 推荐(0) 编辑
摘要: 在python中,@符号常被称作语法糖(装饰器),在某函数定义时,用以包装该函数,以达到截取,控制该函数的目的。 def d(f): print('d...') k=f #此处保留了传进来的原函数 f def f(x): return k(x)*2 return f #此处不能写成f(x),f是函数 阅读全文
posted @ 2020-01-09 22:03 JohnYang819 阅读(1659) 评论(0) 推荐(0) 编辑
摘要: 对于二叉树,图等,Python可采用基于Packing与Unpacking形成的嵌套元组数据结构来模拟,这里Packing指,比如a=b,c则,a就成了一个包含b,c的元组,Unpacking是指,比如a,b=c,则a为c的第一个元素,b为剩下的元素集。 >>> a=(1,(2,(3,4))) >> 阅读全文
posted @ 2020-01-07 21:35 JohnYang819 阅读(309) 评论(0) 推荐(0) 编辑
摘要: np.random.randn是基于标准正态分布产生的随机数,np.random.rand是基于均匀分布产生的随机数,其值在[0,1). np.mgrid 与np.ogrid的理解及区别:两者都是为生成二维数组的,而ogrid,顾名思义,就是open-mesh-grid,not flesh-out, 阅读全文
posted @ 2019-11-21 13:12 JohnYang819 阅读(814) 评论(0) 推荐(0) 编辑