【整理】python中一次性创建多级文件夹,判断一个文件夹是否已经存在
crifan 13年前 (2012-03-16) 5131浏览 0评论
参考代码: import os; cur_path = os.getcwd(); new_dir = cur_path + '\\' + 'dir0' + '\\dir1'; print "new dir exist=",os....
all programming language, C/C++/C#/VB/VBA/VB.NET/Python/Ruby/PHP/Go/Perl/……
crifan 13年前 (2012-03-16) 5131浏览 0评论
参考代码: import os; cur_path = os.getcwd(); new_dir = cur_path + '\\' + 'dir0' + '\\dir1'; print "new dir exist=",os....
crifan 13年前 (2012-03-16) 2904浏览 0评论
参考这里: python学习笔记——字符串 摘录其整理的表格,供参考: 类型 方法 注解 填充 center(width[, fillchar]), ljust(width[, fillchar]), ...
crifan 13年前 (2012-03-16) 16723浏览 0评论
通过百分号%,加上括号来实现,直接上参考代码: int_val = 123; str_val = "hello"; formated_str = " Python sprintf test: digit=%d, stri...
crifan 13年前 (2012-03-16) 16628浏览 2评论
首先我们知道,python中字符包括两种,一个是普通的字符str,另一种是unicode字符。 我们实际的需求,很可能是不知道字符是什么编码的,即不知道是普通的str还是unicode,即使知道unicode,也不一定知道是什么格式存储的,即是u...
crifan 13年前 (2012-03-16) 3366浏览 0评论
isinstance函数的原型是: isinstance(object, classinfo) Return true if the object argument is an instance of the classinfo argumen...
crifan 13年前 (2012-03-16) 4721浏览 0评论
(1) 如何用for循环去枚举出一个字符串中所有的字母 Python基础篇 http://www.tsnc.edu.cn/default/tsnc_wgrj/doc/python/basic.htm#id2878558 已经介绍了,字...
crifan 13年前 (2012-03-16) 11156浏览 0评论
python中没有goto,好像也有其他模块模拟出来goto供有需要的人使用,但是很明显,goto破坏程序的逻辑,所以一般来说,也不推荐使用goto,能不用,最好不要用。 但是,很多时候,我们又有类似需求。 经过测试,自己写了个,类似goto的实现,...
crifan 13年前 (2012-03-16) 3639浏览 0评论
Python中实现,将两个字典变量合并,并且覆盖已有的值,参考代码如下: print 'dict test ++++++++++++++++++' dict1 = {1:111, 2:333} dict2 = {2:22, 4:4444} dict...
crifan 13年前 (2012-03-16) 3733浏览 0评论
使用期间,遇到一个情况,才知道存在这两个关于时间的,另外还有一个date类型的对象的。 此处要解释的是两者之间,datetime支持timedelta,而time支持timedelta: datestr = "2011-12-11 23:2...
crifan 13年前 (2012-03-16) 2753浏览 0评论
List中每个值都是字符或字符串,想要将List中的所有字符组成一个字符串。 能想到的办法是: joinedStr = ” for chr in charList : joinedStr += ch...