python
文章平均质量分 51
0x05
这个作者很懒,什么都没留下…
展开
-
python 读写文件编码处理问题
字符串中有不能编码的字符#coding:utf-8string1=u"凝固粉末冶金技术"print string1f = open('data.txt','w')f.write(string1.encode(encoding='gbk', errors='ignore'))f.close()#errors = 'ignore' 当编码转换出错时忽略错误f = open('data.原创 2014-03-20 09:16:26 · 807 阅读 · 0 评论 -
python2.7 vs2010 编译 第三方包 psycopg2等
winpython2.7 安装环境变量的配置 D:\WinPython27;D:\WinPython27\python-2.7.6;D:\WinPython27\python-2.7.6\Scripts;D:\WinPython27\python-2.7.6\Lib;D:\WinPython27\python-2.7.6\Lib\site-packages;完整安装vs2010(打vs201原创 2014-07-27 09:12:17 · 765 阅读 · 0 评论 -
python 简单实现 图片百叶窗效果
#coding:utf-8'''Created on 2014年3月3日@author: silence'''#coding:utf-8import wximport osID_START=wx.NewId()ID_STOP=wx.NewId()ID_CLOSE=wx.NewId()class Frame(wx.Frame): def __init__(se原创 2014-08-15 21:38:33 · 1235 阅读 · 0 评论 -
Python简单计算器
#coding:utf-8'''Created on 2014年3月2日@author: silence'''import wximport timeimport wx.gizmos as gizmosID_NUM_0=wx.NewId()ID_NUM_1=wx.NewId()ID_NUM_2=wx.NewId()ID_NUM_3原创 2014-08-15 21:25:09 · 854 阅读 · 0 评论 -
python 简易ipscanner
#coding:utf8'''Created on 2014年8月28日@author: silence'''import socketimport sysimport sqlite3from multiprocessing import Poolimport timeconn = Nonecur = None#set default encoding as UTF-原创 2014-08-28 22:13:19 · 515 阅读 · 0 评论