摘要: mkdir 创建目录 cd 进入目录 touch 创建文件 touch oldboy.txt vi 编辑器,相当于记事本,有编辑功能,较弱 vim 复杂编辑器,相当于,emeditor,editplus,notepad++ Tab键 自动补全 vi,输入a或i进入编辑模式,按esc,输入“:“,“q 阅读全文
posted @ 2016-12-03 20:12 Chaz_Sun 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 这几天学习老男孩Linux运维 其中有一节视频进行连接网络时出现: 上网搜了很多方法,包括:向如下三个文件中添加如下代码 check_link_down() { return 1; } (1)/etc/sysconfig/network-scripts/ifcfg-eth0 (2)/etc/sysc 阅读全文
posted @ 2016-12-03 17:47 Chaz_Sun 阅读(5340) 评论(0) 推荐(0) 编辑
摘要: 一、Python介绍 Python是1989年圣诞节期间龟叔创造的一种解释型语言。 最新的TIOBE排行榜 目前Python主要应用领域: 云计算: 云计算最火的语言, 典型应用OpenStack WEB开发: 众多优秀的WEB框架,众多大型网站均为Python开发,Youtube, Dropbox 阅读全文
posted @ 2016-11-26 19:26 Chaz_Sun 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 程序清单一: 源代码中print是为了便于理解代码。 numpy 库中 :tile函数用法 :http://www.cnblogs.com/zibu1234/p/4210521.html sorted:http://blog.163.com/zhuandi_h/blog/static/1802702 阅读全文
posted @ 2016-11-18 22:29 Chaz_Sun 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 292. Nim Game You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remo 阅读全文
posted @ 2016-11-16 21:49 Chaz_Sun 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 412. Fizz Buzz Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three it should output “Fizz” inste 阅读全文
posted @ 2016-11-16 17:46 Chaz_Sun 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 这两个函数中难点就是其中参数0,1 其中0代表列的计算,1代表行的计算,即对列和行分别累积求和、 积。 而且其结果不聚合,产生的是中间数组。 详情可参考:http://docs.scipy.org/doc/numpy/reference/generated/numpy.cumsum.html 阅读全文
posted @ 2016-10-04 16:21 Chaz_Sun 阅读(27271) 评论(1) 推荐(1) 编辑