Tag:
python
| 记录数: 22
-
- 在win平台下用Python调用程序的问题
- Weather:多云,南风 4-5级,最高气温27 ℃
- 2005-09-08
今天在测试Python的时候,一个示例讲到了怎么样用系统的zip命令来压缩指定的文件夹或文件,zip命令在linux/unix系统中是默认安装的系统命令,再加上unix平台下的文件夹一般都是无空格命名的,所以用起来应该是没什么问题的。
而我没有那个测试平台,我是在win2003下使用的Python 2.4,并且我的机器上也没有装winzip,我不用zip好多年,因为现在都用winrar嘛,又轻巧又好用。于是乎我就用rar命令来压缩文件。当然,我得先...
- Views(5053) | Comments(0) | In Python相关
-
- sort by index of tuple in list
- Weather:晴,北风4-5级,最高气温28 ℃
- 2005-09-07
"""
Packages: basic_datatypes.tuples
""""""
> I have a list of tuples
> [('a','p','q'),('b','r','s'),('c','t','u'),('a','v','w'),
('b','x','y')],
> and I want to print out
> <b...- Views(3741) | Comments(0) | In web develop Python相关
