上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: Python中,类的特点: 输出: Python中类的方法又有怎样的特点? 以上测试说明Python中的类有以下几个特点: 1. Python也有类似Java的静态属性(类属性),但是不用static关键字修饰。那么如何区分类属性还是实例属性?参考第2条 2. Python类中的属性若写成 "类名. 阅读全文
posted @ 2016-06-14 20:47 morein2008 阅读(2417) 评论(0) 推荐(0) 编辑
摘要: 今天在使用uniq命令统计数量时,uniq -c总是得不到想要的效果,相同的行没有合并,例如 后来在http://ju.outofmemory.cn/entry/78365才看到,原来uniq检查重复行的时候,只会检查相邻的行,茅塞顿开。 加上sort命令把各行先排个序,把相同的行放到一起,然后再用 阅读全文
posted @ 2016-06-08 13:24 morein2008 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 链接:http://suanfazu.com/t/topic/15 入门书单 《数学之美》 PDF586作者吴军大家都很熟悉。以极为通俗的语言讲述了数学在机器学习和自然语言处理等领域的应用。 《Programming Collective Intelligence》(《集体智慧编程》)PDF343作 阅读全文
posted @ 2016-05-25 21:30 morein2008 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 用以上代码读取一个包含中文的txt文件时,在正确地读取并打印了六百多行之后,print str(i)+": "+line这一行报错: UnicodeEncodeError: 'gbk' codec can't encode character u'\u200b' in position 99: il 阅读全文
posted @ 2016-05-24 19:15 morein2008 阅读(1356) 评论(0) 推荐(0) 编辑
摘要: root权限执行: 阅读全文
posted @ 2016-05-20 17:34 morein2008 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 经过实验发现,命令sed 's/pattern/replacement/' file中,pattern使用的并不是完全的正则表达式,而如果想使用正则表达式,需要使用sed命令的 -r 选项: sed -r 's/RegexPattern/replacement/' file 分析: 第三个命令ech 阅读全文
posted @ 2016-05-17 21:23 morein2008 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 引自:http://www.fengdingbo.com/shell-stop-procedure.html 阅读全文
posted @ 2016-05-17 20:12 morein2008 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 1.去Oracle官网下载最新的jdk,解压,配置环境变量(直接改 /etc/profile) 参考:http://www.cnblogs.com/aaronhoo/p/5293118.html2.再就是将我们装好的SUN JDK装到系统里,sudo update-alternatives --in 阅读全文
posted @ 2016-05-17 15:57 morein2008 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: centos安装chrome:去官网下载chrome安装包(xxx.rpm),带软件安装工具的系统双击该xxx.rpm就能自动安装,或者sudo rpm -i xxx.rpm安装。 centos卸载自带firefox,然后安装最新版本: 1.卸载自带firefoxyum -y remove fire 阅读全文
posted @ 2016-05-17 15:55 morein2008 阅读(874) 评论(0) 推荐(0) 编辑
摘要: 为chrome安装flash: 打开终端,输入:sudo apt-get install pepperflashplugin-nonfree 或官网下载安装google-chrome-stable 为firefox安装: 参考:http://jingyan.baidu.com/article/2fb 阅读全文
posted @ 2016-05-13 18:12 morein2008 阅读(950) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页