ChinaUnix.net
相关文章推荐:

python tarfile 解压

1、(推荐)如果你是linux,推荐你file命令。 魔术字(magic word)比较通用。 2、交给外部命令行工具 7z 来负责, 7z X 会自动检测格式并解压。 3、后缀名 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/72494/showart_1915724.html

by yangguosdxl - Python文档中心 - 2009-05-01 10:30:30 阅读(1675) 回复(0)

相关讨论

好好学python,以后要养家吃饭的!!! 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/89259/showart_1885773.html

by mzlinux - Python文档中心 - 2009-03-31 11:10:31 阅读(1372) 回复(0)

www.okpython.com python中国 这里有教程

by xieaotian - Python - 2009-01-10 12:53:11 阅读(1629) 回复(0)

在系统管理技术手册(第二版)说得很清楚了,perl\python都是不错的啊,学哪个都一样,只要够用就行了,菜鸟学python算了,刚好本站里面又推荐了一本<python核心编程>所以说最好是根据现有的资料学,可能会更顺利些。

by yizuwei520 - C/C++ - 2008-11-24 02:06:34 阅读(1743) 回复(3)

matrix processing for python: NumPy and SciPy. optimized tools: NumPy 方括号[...]定义一个列表,圆括号(...)定义一个元组,花括号{...}定义一个字典: a = [ 1, 3.4, 'hello' ] # A list b = ( 10, 20, 30 ) # A tuple c = { 'a': 3, 'b':42 } # A dictionary 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17420/showart_492068.html

by ariesjzj - Python文档中心 - 2008-03-08 17:35:52 阅读(1390) 回复(0)

lvdbing@ubuntu:~$ python python 2.5.2 (r252:60911, Oct 5 2008, 19:29:17) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> lvdbing@ubuntu:~/python/app/python-3.0$ sudo make fullinstall lvdbing@ubuntu:~$ python python 3.0 (r30:67503, Dec 11 2008, 23:57:39) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more info...

by lvDbing - Python文档中心 - 2008-12-12 00:00:50 阅读(1878) 回复(0)

Programming python, 3rd Edition 介绍的例子 http://examples.oreilly.com/python3/ 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/20294/showart_1272424.html

by lvDbing - Python文档中心 - 2008-10-04 15:54:41 阅读(2122) 回复(0)

python () is shorthand for "python __anonymous ()". It declares an anonymous function, which is executed automatically at the end of parsing. for example we can modify package version python __anonymous () { import bb, re new_version = '3.0.0' bb.data.setVar('PV',new_version,d) 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinauni...

by linuxGentoo - Python文档中心 - 2007-10-01 23:36:15 阅读(1172) 回复(0)

看看~~ 静态类型,动态类型. 我们老说python是动态类型地,那什么是动态类型啊,还有相对的什么是静态类型?动态类型的语言,比如俺们的python中,每个变量只绑定到一个对象,执行地时候把变量的名子和对象绑定并且可以把名子绑定到不同的对象上. 例: int x = 1 ; // java x = " 1 " ; // 这是不可以的! x = 1; # python x = " 1 " # 没关系 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/10958/showart_56156...

by m19m19m19m19 - Python文档中心 - 2005-11-09 20:22:22 阅读(1816) 回复(0)

最近在看DiP,其中碰到一个问题。 Example3.23. 数值的格式化(Page. 43) 第三个实例: >>> print "change since yesterday:%+.2f" %1.5(3) 后面对这句的解释: ...添加+修正符用于再数值之前显示一个正号或者负号。... 上面这句的输出是+1.50 我想试一下如何输出 "-1.50" : >>> print "change since yesterday:[color="#00f000"]%-.2f" %1.5 结果输出是: 1.50 我后来试了一下: >>> print "change since yesterday:[color...

by nicozhou - Python文档中心 - 2009-08-06 08:53:40 阅读(1284) 回复(0)

/usr/lib/python3.0/tkinter中可以看到一些接口的定义,如果发现例程不对,直接在这里查找就可以。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/77027/showart_1969444.html

by cfig - Python文档中心 - 2009-06-19 00:41:10 阅读(1618) 回复(0)