Python
shenyan008
这个作者很懒,什么都没留下…
展开
-
Python中list、tuple、dict 区别
Python中list、tuple、dict区别(2010-11-02 22:35:54) Dictionary 是 Python 的内置数据类型之一,它定义了键和值之间一对一的关系。(用花括号)每一个元素都是一个 key-value 对, 整个元素集合用大括号括起来您可以通过 key 来引用其值, 但是不能通过值获取 key在一个 dictionary 中不能有重复的转载 2013-03-01 15:22:28 · 745 阅读 · 0 评论 -
Python 字符串处理
python 字符串替换python 字符串替换是python操作字符串的时候经常会碰到的问题,这里简单介绍下字符串替换方法。python 字符串替换可以用2种方法实现:1是用字符串本身的方法。2用正则来替换字符串下面用个例子来实验下:a = 'hello word'我把a字符串里的word替换为python1用字符串本身的replace方法a.repl转载 2013-03-01 14:52:40 · 459 阅读 · 0 评论 -
The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode
The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)by Joel SpolskyWednesday, October 08, 2003Ever wonder about tha转载 2013-03-27 16:59:13 · 1313 阅读 · 0 评论 -
python 格式转换
如下语句:insert_cmd = "insert into web_chat (content, time, program_time, program_id, sns_id) \ values (%s, %s, %d, %d, %d)" %tuple(chat_item)如果chat_item是list必须先把list转换为tuple之后,才能格式化原创 2013-04-11 18:05:04 · 613 阅读 · 0 评论 -
python的for如何获得当前循环次数?
python的for如何获得当前循环次数?摘自:http://markmail.org/message/ryfven2i75kgsrsmenumerate是python 2.3中新增的内置函数,它的英文说明为:enumerate( iterable)Return an enumerate object. iterable must be a sequen转载 2013-05-29 18:10:25 · 32516 阅读 · 3 评论 -
python写的crond后台任务打印包含中文字符的unicode 字符串,出现异常?
取消打印的语句,解决问题。如何解决能打印中文字符的任务,解决方案继续寻找。。。原创 2013-05-31 19:52:16 · 782 阅读 · 0 评论 -
win7下安装python pip
1. 安装python1)官网下载安装包 2.7.6安装后,已经有了easy_install.exe,可以用它来安装pip2)安装pipeasy_install pip默认的配置pip search/install 可能timeout,需要修改配置,添加用户目录/pip/pip.ini:[global]timeout=6000inde原创 2013-12-24 16:41:33 · 1327 阅读 · 0 评论