摘要:
#汉字数字转阿拉伯数字 1 class ConvertNum: 2 def __init__(self,cnNum): 3 self.dict = {u'零':0,u'一':1,u'二':2,u'三':3,u'四':4,u'五':5,u'六':6,u'七':7,u'八':8,... 阅读全文
摘要:
--使用SELECT ... INTO OUTFILE 以逗号分隔字段的方式将数据导入到一个文件中:SELECT * INTO OUTFILE 'D:\\log1.txt' FIELDS TERMINATED BY ',' FROM log.log1--将刚刚导出的文件log1.txt导入到表log... 阅读全文
摘要:
f = lambda x: 'big' if x > 100 else 'small'#或者f = lambda x: ['small', 'big'][x>100] 阅读全文
摘要:
插入行号:select (@rowid:=@rowid+1) as rowNo,table.* from table,(select (@rowid:=0)) as b删除表数据:delete from表名;truncate table表名; 阅读全文
摘要:
Python利用urllib2抓取网页返回乱码的问题,gzip简要方法 阅读全文
摘要:
django-pagination插件分页的使用方法 阅读全文
摘要:
windows安装twisted 阅读全文
摘要:
python利用代理和设置头信息爬虫例子 阅读全文
摘要:
Python学习笔记 阅读全文
摘要:
python利用wx.grid网格显示数据 阅读全文