
python
zzzmmy2003
这个作者很懒,什么都没留下…
展开
-
第一篇博,写点什么
<第一篇博,写点什么 Fisher–Yates shuffle> 作为编程新手,又非本专业所学,在csdn上写博客似乎不自量力。然而记录本身也是学习的一部分,而这记录非此处不能写,那就开始吧。看到洗牌算法似乎十分有趣,试着用python练习一下原创 2017-02-01 02:02:14 · 273 阅读 · 0 评论 -
Python:一句话生成字母表
一句话生成字母表(后面还有两句的)转载 2017-02-02 20:49:43 · 31026 阅读 · 1 评论 -
python 获取文件创建日期、修改日期 Get created & modified time of a file
To update the filename according to its created time or modified time, a function is a good way.def getMdate(file): '''return: modified time of a file''' import time # os.stat return properti原创 2017-06-10 10:48:03 · 1986 阅读 · 0 评论 -
Saving loop 保存与循环
Saving loop 保存与循环The loop ends only when successively savedwhile unsaved: try: wb.save(fn) unsaved = False except PermissionError: print(fn, 'in use, close and press ente原创 2017-06-10 16:33:56 · 411 阅读 · 0 评论 -
Windows 10 安装 Cuda, Tensorflow, 和keras,附CPU/GPU切换小技巧
Windows 10 安装机器学习框架过程,也适合win 7原创 2017-07-19 22:14:35 · 4594 阅读 · 0 评论 -
今日收获:匿名函数 Lambda
# Anonymous Fuction Lambda - Lambda is an anonymous function, which saves our time in process of defining one. - Arguments and ouputs are seperated by a colon - The latter can be simply a func原创 2017-10-18 22:27:02 · 336 阅读 · 0 评论 -
按位操作符与背包问题的遍历
# 按位操作符与背包问题的遍历今天brute force 作业的案例和问题都十分有趣,而遍历的过程更能加深对按位操作符作用的理解。原创 2017-10-19 22:10:53 · 439 阅读 · 0 评论 -
Jupyter Notebook 27绝技
Jupyter notebook, formerly known as the IPython notebook, is a flexible tool that helps you create readable analyses, as you转载 2017-10-11 21:58:04 · 2453 阅读 · 0 评论