首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
function_use
】的更多相关文章
function_use
# 函数说明文档,help(len) def sum1(a, b): """ 求和函数sum1 :param a: 参数1 :param b: 参数2 :return: a + b """ return a + b help(sum1) 函数和模块的使用 def factorial(num): """求阶乘""" result = 1 for n in range(1, num + 1)…
linux内核数据结构学习总结
目录 . 进程相关数据结构 ) struct task_struct ) struct cred ) struct pid_link ) struct pid ) struct signal_struct ) struct rlimit . 内核中的队列/链表对象 ) singly-linked lists ) singly-linked tail queues ) doubly-linked lists ) doubly-linked tail queues . 内核模块相关数据结构 ) st…