【整理】Python中类似于sprintf的格式化字符串的函数
crifan 13年前 (2012-03-16) 16673浏览 0评论
通过百分号%,加上括号来实现,直接上参考代码: int_val = 123; str_val = "hello"; formated_str = " Python sprintf test: digit=%d, stri...
crifan 13年前 (2012-03-16) 16673浏览 0评论
通过百分号%,加上括号来实现,直接上参考代码: int_val = 123; str_val = "hello"; formated_str = " Python sprintf test: digit=%d, stri...
crifan 13年前 (2012-03-16) 16597浏览 2评论
首先我们知道,python中字符包括两种,一个是普通的字符str,另一种是unicode字符。 我们实际的需求,很可能是不知道字符是什么编码的,即不知道是普通的str还是unicode,即使知道unicode,也不一定知道是什么格式存储的,即是u...
crifan 13年前 (2012-03-16) 3339浏览 0评论
isinstance函数的原型是: isinstance(object, classinfo) Return true if the object argument is an instance of the classinfo argumen...
crifan 13年前 (2012-03-16) 4696浏览 0评论
(1) 如何用for循环去枚举出一个字符串中所有的字母 Python基础篇 http://www.tsnc.edu.cn/default/tsnc_wgrj/doc/python/basic.htm#id2878558 已经介绍了,字...
crifan 13年前 (2012-03-16) 11128浏览 0评论
python中没有goto,好像也有其他模块模拟出来goto供有需要的人使用,但是很明显,goto破坏程序的逻辑,所以一般来说,也不推荐使用goto,能不用,最好不要用。 但是,很多时候,我们又有类似需求。 经过测试,自己写了个,类似goto的实现,...
crifan 13年前 (2012-03-16) 3610浏览 0评论
Python中实现,将两个字典变量合并,并且覆盖已有的值,参考代码如下: print 'dict test ++++++++++++++++++' dict1 = {1:111, 2:333} dict2 = {2:22, 4:4444} dict...
crifan 13年前 (2012-03-16) 3707浏览 0评论
使用期间,遇到一个情况,才知道存在这两个关于时间的,另外还有一个date类型的对象的。 此处要解释的是两者之间,datetime支持timedelta,而time支持timedelta: datestr = "2011-12-11 23:2...
crifan 13年前 (2012-03-16) 2724浏览 0评论
List中每个值都是字符或字符串,想要将List中的所有字符组成一个字符串。 能想到的办法是: joinedStr = ” for chr in charList : joinedStr += ch...
crifan 13年前 (2012-03-16) 1979浏览 0评论
之前已经成功的用python脚本,将百度空间的帖子,导出为WXR,然后再导入wordpress了。 现在又实现了,在该脚本基础上,在提供了用户名和密码的前提下,用python脚本登陆百度空间, 然后找到私人类型的日志。 后来又实现了,在登陆模式下,去...
crifan 13年前 (2012-03-16) 3306浏览 0评论
【问题】 当前已经是可以登陆百度空间,已经有了对应的cookie信息了,是通过cookiejar管理的。 登陆空间后,用: try : req = urllib2.Request(url); req.add_header('User-...