07 2017 档案

python遍历文件夹下的文件
摘要:在读文件的时候往往需要遍历文件夹,python的os.path包含了很多文件、文件夹操作的方法。下面列出: os.path.abspath(path) #返回绝对路径 os.path.basename(path) #返回文件名 os.path.commonprefix(list) #返回多个路径中, 阅读全文

posted @ 2017-07-29 17:57 HelloShijam 阅读(1631) 评论(0) 推荐(0) 编辑

让python pip使用国内镜像
摘要:国内源: 国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大 阅读全文

posted @ 2017-07-28 09:38 HelloShijam 阅读(128309) 评论(1) 推荐(5) 编辑

jupyter 修改工作路径
摘要:cd ......jupyter notebook 注1:上述两行中,第一行的......为路径(可以不添加,可空着不填),例如 F:\pythonworkplace\ex1 注2:可把runJupyter.bat放到上层根目录中,然后在打开的jupyter网页依次打开所需文件夹 阅读全文

posted @ 2017-07-24 22:43 HelloShijam 阅读(325) 评论(0) 推荐(0) 编辑

Jupyter Notebook 快捷键
摘要:Jupyter Notebook 的快捷键 Jupyter Notebook 有两种键盘输入模式。编辑模式,允许你往单元中键入代码或文本;这时的单元框线是绿色的。命令模式,键盘输入运行程序命令;这时的单元框线是灰色。 命令模式 (按键 Esc 开启) Ctrl-Enter : 运行本单元 Enter 阅读全文

posted @ 2017-07-24 22:30 HelloShijam 阅读(276) 评论(0) 推荐(0) 编辑

python 清华镜像pip install
摘要:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文

posted @ 2017-07-22 17:12 HelloShijam 阅读(1549) 评论(0) 推荐(0) 编辑

anaconda下载 (清华镜像)
摘要:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 阅读全文

posted @ 2017-07-22 17:10 HelloShijam 阅读(6996) 评论(1) 推荐(0) 编辑

pycharm 授权/激活
摘要:License server: http://elporfirio.com:1017/ http://idea.imsxm.com/ 阅读全文

posted @ 2017-07-16 15:23 HelloShijam 阅读(1098) 评论(0) 推荐(0) 编辑

python序列中添加高斯噪声
摘要:wgn是获得原始信号为x,相对于原始信号信噪比是snr dB的高斯噪声 阅读全文

posted @ 2017-07-06 21:01 HelloShijam 阅读(17968) 评论(0) 推荐(1) 编辑

python 如何在一个.py文件中调用另一个.py文件的类
摘要:如果是在同一个 module中(也就是同一个py 文件里),直接用就可以如果在不同的module里,例如a.py里有 class A:b.py 里有 class B:如果你要在class B里用class A 需要在 b.py的开头写上 from a import A #mymodel.py imp 阅读全文

posted @ 2017-07-06 10:19 HelloShijam 阅读(62628) 评论(1) 推荐(7) 编辑

pycharm 变量批量重命名
摘要:Ctrl + R 替换 Ctrl + Shift + F 全局查找 Ctrl + Shift + R 全局替换 阅读全文

posted @ 2017-07-05 17:17 HelloShijam 阅读(4271) 评论(0) 推荐(1) 编辑

导航