摘要: 文件声明为utf-8编码保存的源文件,但是中文windows的本地默认编码是cp936(gbk编码),Windows中直接打印utf-8的字符串是乱码。 解决方法: 在控制台打印的地方用一个转码就可以 print str.decode('UTF-8').encode('GBK') 1: #coding:utf-8 2: ''' 3: Created on 2012-11... 阅读全文
posted @ 2012-11-01 14:51 sunny5156 阅读(23963) 评论(0) 推荐(0) 编辑
摘要: 需要注意的是:如何你使用SyntaxHighlighter代码着色,需要将默认编辑器改为TinyMCE。如果使用CuteEditor,CuteEditor会自动去除代码中的空格,造成代码格式破坏。 如果您使用Windows Live Writer写博客(配置步骤),通过Windows Live Writer代码着色插件,可以方便进行SyntaxHighlighter代码着色。 我们推荐的代码着... 阅读全文
posted @ 2012-11-01 14:41 sunny5156 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 隐藏行号 复制代码 ? 这是一段程序代码。 <?php /** * 汉字转换成拼音 * @author sunny5156 * @version 1.0.0 ... 阅读全文
posted @ 2012-11-01 10:51 sunny5156 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: 报错信息:“Allowed memory size of 20971520 bytes exhausted (tried to allocate 2048 bytes)” 网上很多的解决方案是: 修改php.ini 文件 把memory_limit的值改大,然后重启服务器, 还有的说是在页面加上ini_set(memory_limit, '20M'); 我把上面的方... 阅读全文
posted @ 2012-10-31 09:30 sunny5156 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 在公司开发需要,要在Linux下安装Python MySQLdb。发现用编译的方式安装真的很蛋疼,不过也算见见世面,各种问题...... 这里有两种方式: A.快速安装 B.自己编译 1.最快速最简单方法(赶时间的话) sudo yum install MySQL-python 可能遇到问题: >>> import MySQLdb Traceback (most rece... 阅读全文
posted @ 2012-10-30 12:57 sunny5156 阅读(743) 评论(0) 推荐(0) 编辑
摘要: #参考资料:《The Python Standard Library by Example》 12.9 json 模块 JSON就是JavaScript Object Notation,这个模块完成了python对象和JSON字符串的互相转换。适用于Python的版本2.6和更高版本。 json模块提供了一个类似pickle的API,转换内存中的Python对象为JavaScript对象... 阅读全文
posted @ 2012-10-29 17:16 sunny5156 阅读(2339) 评论(0) 推荐(0) 编辑
摘要: Python的字典和JSON在表现形式上非常相似 #这是Python中的一个字典 dic = { 'str': 'this is a string', 'list': [1, 2, 'a', 'b'], 'sub_dic': { 'sub_str': 'this is sub str', 'sub_list': [1, 2, 3] }, 'end': 'end' } //这是javascript... 阅读全文
posted @ 2012-10-29 17:09 sunny5156 阅读(4687) 评论(0) 推荐(0) 编辑
摘要: 安装 python memcache 过程略 1 root@Veda:~# python 2 Python 2.7.2+ (default, Oct 4 2011, 20:03:08) 3 [GCC 4.6.1] on linux2 4 Type "help", "copyright", "credits" or "license" for more information. 5 >>>... 阅读全文
posted @ 2012-10-29 15:10 sunny5156 阅读(320) 评论(2) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 #coding=utf-8 3 from __future__ import with_statement 4 from contextlib import closing 5 import inspect 6 import pymssql 7 import uuid 8 import datetime 9 10 #查询操作11 with cl... 阅读全文
posted @ 2012-10-29 13:51 sunny5156 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: 项目需要python 简单示例 表结构 1 CREATE TABLE `slevin` ( 2 `id` int(5) NOT NULL DEFAULT '0', 3 `name` char(10) DEFAULT NULL, 4 PRIMARY KEY (`id`) 5 ) ENGINE=InnoDB DEFAULT CHARSET=latin1查看表的内容 1 mysq... 阅读全文
posted @ 2012-10-29 10:43 sunny5156 阅读(1144) 评论(0) 推荐(0) 编辑