码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
Python编程学习,高效求解素数程序实例
素数是编程中经常需要用到的。作为学习Python的示例,下面是一个高效求解一个范围内的素数的程序,不需要使用除法或者求模运算。 1 #coding:utf-8 #设置python文件的编码为utf-8,这样就可以写入中文注释 2 def primeRange(n): 3 myAr...
分类:编程语言   时间:2014-07-09 21:47:08    阅读次数:294
批量MD5命名文件
#coding=utf-8import osimport hashlibdef GetFileMd5(filename): if not os.path.isfile(filename): print(filename) return mymd5 = has...
分类:其他好文   时间:2014-07-08 23:52:38    阅读次数:502
python分析apahce网站日志的例子
有关python实现apahce网站日志分析的方法。应用到:shell与python数据交互、数据抓取,编码转换#coding:utf-8#!/usr/bin/python'''程序说明:apache access.log日志分析 分析访问网站IP 来源情况 日期:2014-01-06 17:01 ...
分类:编程语言   时间:2014-07-08 22:47:52    阅读次数:434
Cracking the Coding Interview Q2.1
Write code to remove duplicates from an unsorted linked list.
分类:其他好文   时间:2014-07-08 22:18:56    阅读次数:219
Cracking the Coding Interview Q1.7
Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column is set to 0.
分类:其他好文   时间:2014-07-08 22:17:29    阅读次数:193
Cracking the Coding Interview Q1.6
Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. Can you do th...
分类:其他好文   时间:2014-07-08 22:06:25    阅读次数:222
functools:管理函数工具(部分)
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#functools:管理函数工具#作用:处理其他函数的函数#版本:2.5及之后#用于调整或者扩展函数和其他可回调对象,不用重写#修饰符:主要工具是partial在,用于包装,一个有默认参...
分类:其他好文   时间:2014-07-06 13:04:55    阅读次数:206
shutil模块
#-*-coding:utf-8-*-#python:2.x__author__='Administrator'#shutil#作用:高级文件操作#版本:1.4及以后#其他:包含了一些高级文件操作,如复制和设置限制importshutil,glob,os,StringIO,time#复制文件#cop...
分类:其他好文   时间:2014-07-05 22:35:39    阅读次数:307
浅谈KAC
今天我研究了一下KVC,下面我将浅谈一下我对KVC的认识,可能认识不足,我会在后续学习生活中改正. 首先,看到KVC,我们会想这个知识点是干嘛的,其实我们了解一下,就会发现KVC(Key-Value-Coding),键值编码  KVC主要是用来间接访问实例变量(赋值)...      下面我们看一下苹果给的KVC的官方文档: /* Given a value and a key tha...
分类:其他好文   时间:2014-07-04 07:27:43    阅读次数:379
python发送邮件
#!/usr/bin/envpython #-*-coding:utf8-*- importsmtplib fromemail.mime.textimportMIMEText textfile=‘sendmail.html‘ withopen(textfile,‘rb‘)asf: msg=MIMEText(fp.read(),‘html‘,‘utf8‘) msg.set_charset(‘utf8‘) me=‘xxx@163.com‘ you=‘xxxx@qq.com‘ msg[‘Subject‘]=..
分类:编程语言   时间:2014-07-04 06:41:33    阅读次数:325
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!