
python
文章平均质量分 81
qiaoqinqie
白手起家
展开
-
python字符串转成列表
今天在看pygments的代码的时候,发现有一个类是 自生成式的 就是在main方法里面 通过一系列操作写文件当然 这个文件就是他自己了其中的代码片段""" pygments.lexers._mapping ~~~~~~~~~~~~~~~~~~~~~~~~ Lexer mapping defintions. This file is generat...2011-04-16 17:11:49 · 550 阅读 · 0 评论 -
python内置函数filter,map,reduce
Python list function build in three useful funtion(1):filter(funtion,sequence)This function will return the item in the sequence invoke the function and return truesuch as:def f(x):if x &g...2011-04-21 20:45:44 · 96 阅读 · 0 评论 -
用wxpython写了个简单的文件转码工具
最近换的电脑是英文的系统,以前的一些资料都是中文gbk编码。导致一直乱码,系统没有管理员权限也不能修改编码想想很久没用wxpythonl。就写了这样的一个小工具 #! /usr/bin/python# -*- coding:utf-8 -*-'''Created on Jun 9, 2011@author: eruan'''import wximpo...原创 2011-06-13 17:24:37 · 216 阅读 · 0 评论 -
用pygame写了个俄罗斯方块
最近在学习pygame,就写了个俄罗斯方块玩玩,完成了基本的功能,后续在加入需要安装pygame,ubuntu用户 sudo apt-get install python-pygame代码入下 #-* coding:UTF-8 -*#!/usr/bin/env pythonimport copyimport pygameimport random...原创 2011-08-14 11:36:56 · 462 阅读 · 0 评论