python里的数组何等重要,不用多言,看完下面的代码,一定受益匪浅#!/usr/bin/env python## [代码名字: Lists 101]# [代码分类: Python Core]# [代码描述: Basic and not so basic list operations]# [代码作者: Bruno Girin <……继续阅读 » 水墨上仙 9年前 (2017-04-10) 2954浏览 2769个赞
学习在python中如何使用参数一定要看下面的代码#!/usr/bin/env python## [代码名字: Arguments]# [代码分类: Python Core]# [代码描述: GNU style arguments]# [代码作者: Jurjen Stellingwerff <jurjen@stwerff.xs4a……继续阅读 » 水墨上仙 9年前 (2017-04-10) 3042浏览 566个赞
python读取目录下的内容,包含子目录和文件夹#!/usr/bin/env python## [代码名字: List Directories Content]# [代码分类: os]# [代码描述: List the content of the home directory]# [代码作者: Andy Breiner <bre……继续阅读 » 水墨上仙 9年前 (2017-04-10) 2432浏览 2917个赞
python生成一个可以被遍历的函数,听起来很绕口,到底什么意思,就是可以把一个函数当成列表一样可以进行遍历,下面的代码中,函数每次运行生成的值都不一样,如果不设置终止次数,则会永远的遍历下去,看了这段代码,真实感到了python的强大def fibonacci(start=(0, 1), stop=10): """……继续阅读 » 水墨上仙 9年前 (2017-04-10) 3309浏览 2660个赞
python中数组使用非常频繁,此代码方便的遍历数组items = [ 1, 2, 3, 4, 5 ]for i in items: print i ……继续阅读 » 水墨上仙 9年前 (2017-04-10) 2925浏览 915个赞
Filter, Map & Reduce of lists# [代码名字: Filter, Map & Reduce of lists]# [代码分类: Python Core]# [代码描述: Simple examples to show common features in everyday work with lists]……继续阅读 » 水墨上仙 9年前 (2017-04-10) 3208浏览 2088个赞
自动安装脚本yum install python rsyslog python-ipaddr -ywget https://soft.vpser.net/security/denyhosts/denyhosts-3.1.tar.gz denyhosts-3.1.tar.gztar zxf denyhosts-3.1.tar.gz cd de……继续阅读 » 开心洋葱 9年前 (2017-04-10) 3880浏览 0评论408个赞
ecstore的ecos自定义finder列……继续阅读 » 开心洋葱 9年前 (2017-04-10) 3687浏览 0评论2719个赞