上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页

2016年10月8日

python安装pip

摘要: pip类似RedHat里面的yum,安装Python包非常方便。本节详细介绍pip的安装、以及使用方法。 1、pip下载安装 1.1 pip下载 # wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=83 阅读全文

posted @ 2016-10-08 11:36 与非朋仔 阅读(1442) 评论(0) 推荐(0) 编辑

python升级2.7.5

摘要: 一开始有这个需求,是因为用 YaH3C 替代 iNode 进行校园网认证时,一直编译错误,提示找不到 Python 的某个模块,百度了一下,此模块是在 Python2.7 以上才有的,但是系统的自带的Python是2.6版本,难怪一直连不上网。于是,继续百度google,进行安装,后来又出现问题.. 阅读全文

posted @ 2016-10-08 10:52 与非朋仔 阅读(361) 评论(0) 推荐(0) 编辑

2016年9月27日

python ast

摘要: import astprint ast.literal_eval('[1, 2, 3]')print eval("2 + 3 * len('hello')") == 17print eval("__import__('os').system('dir')", {})s = """(lambda fc 阅读全文

posted @ 2016-09-27 16:21 与非朋仔 阅读(704) 评论(0) 推荐(0) 编辑

2016年9月26日

Linux下Modules的概念及使用详解[转贴]

摘要: 一、什么是 modules? modules 的字面意思就是模块,在此指的是 kernel modules;简单来说,一个模块提供了一个功能,如 isofs、minix、nfs、lp 等等。传统来讲,模块化有两个方法解决:设计者可以把各项功能分离到单独的叫做线程的处理中去,或者是将内核以包含/排除一 阅读全文

posted @ 2016-09-26 16:54 与非朋仔 阅读(12762) 评论(0) 推荐(1) 编辑

2016年8月18日

linux内核定时器

摘要: 今天参考linux驱动开发详解,照抄了一份second的程序,用到了timer。总的来说,timer的用法还是很简单的。主要需要定义一个timer_list变量timer、先初始化timerinit_timer(&timer);then 对timer的相关参数赋值:timer.function = 阅读全文

posted @ 2016-08-18 15:06 与非朋仔 阅读(1141) 评论(0) 推荐(0) 编辑

2016年8月6日

python类

摘要: def Main(): class A: pass a=A() a.x=1 print a.x if __name__=="__main__": Main() #-*-coding:utf-8-*- import sys def Main(): class A: def __init__(self): ... 阅读全文

posted @ 2016-08-06 18:06 与非朋仔 阅读(143) 评论(0) 推荐(0) 编辑

python获取

摘要: def anc():pass print anc.__name__ def timeit(func): def run(*argv): print "this function name is", func.__name__ if argv: ret = func(*argv) else: ... 阅读全文

posted @ 2016-08-06 16:43 与非朋仔 阅读(161) 评论(0) 推荐(0) 编辑

2016年8月3日

python生成器

摘要: def func_list_empty(l = []): l.append(2) return l def func_list_none(l = None): if l == None: l = [] l.append(2) return l def test_list_empty(l = []): func_l... 阅读全文

posted @ 2016-08-03 15:59 与非朋仔 阅读(159) 评论(0) 推荐(0) 编辑

2016年8月2日

IP子网掩码格式转换

摘要: def exchange_maskint(mask_int): bin_arr = ['0' for i in range(32)] for i in range(mask_int): bin_arr[i] = '1' tmpmask = [''.join(bin_arr[i * 8:i * 8 + 阅读全文

posted @ 2016-08-02 14:30 与非朋仔 阅读(802) 评论(0) 推荐(0) 编辑

2016年7月10日

错误: symbol lookup error: /usr/local/lib/libreadline.so.6: undefined symbol: PC

摘要: su - root mkdir temp mv /local/ldconfig apt-get update 阅读全文

posted @ 2016-07-10 22:46 与非朋仔 阅读(965) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页

导航