浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年11月9日

摘要: 要想在centos下安装python需要使用如下包libffilibffi-develpython26-libspython26-develbyobuscreenepel-releaserpmforge-releasehttp://mirrors.sohu.com/fedora-epel//5/x86_64/ 阅读全文
posted @ 2012-11-09 17:09 lexus 阅读(357) 评论(0) 推荐(0)

摘要: python26-devel-2.6.8-2.el5.x86_64.rpm CentOS 5 (RHEL 5) Download pkgs.org provides python26-devel-2.6.8-2.el5.x86_64.rpm packagesonly from the official CentOS 5 (RHEL 5) mirrors.Install HowtoDownload ... 阅读全文
posted @ 2012-11-09 16:41 lexus 阅读(1174) 评论(0) 推荐(0)

摘要: #!/usr/bin/env python#encoding=utf-8import redis,codecs,sys,time,datetime,doctestreload(sys)sys.setdefaultencoding('utf-8')class Unbuffered: def __init__(self, stream): self.stream = stream def write(... 阅读全文
posted @ 2012-11-09 16:04 lexus 阅读(482) 评论(0) 推荐(0)

摘要: 寻找最大回文数 - 拣尽寒枝 - 博客频道 - CSDN.NET 寻找最大回文数 分类: 技术杂坛 2012-05-21 19:39 126人阅读 评论(0) 收藏 举报回文数是指无论从左往右读还是从右往左读的都是一样的数。由两个2位数相乘得到的最大回文数是9009(9009= 91 * 99),请编程计算由两个3位数相乘能够得到的最大回文数。C语言算法实现如下:[cp... 阅读全文
posted @ 2012-11-09 14:33 lexus 阅读(349) 评论(0) 推荐(0)

摘要: google.sg 阅读全文
posted @ 2012-11-09 13:27 lexus 阅读(518) 评论(0) 推荐(0)

摘要: RepoView: "Fedora EPEL 5 - x86_64"epel-release - Extra Packages for Enterprise Linux repository configurationWebsite:http://download.fedoraproject.org/pub/epelLicense:GPLVendor:Fedora Project Descript... 阅读全文
posted @ 2012-11-09 13:14 lexus 阅读(1035) 评论(0) 推荐(0)

摘要: def a(): """ >>> a() 1 """ #print "a" return 1if __name__=="__main__": import doctest doctest.testmod() 阅读全文
posted @ 2012-11-09 11:19 lexus 阅读(266) 评论(0) 推荐(0)