摘要:
Python的GUI编程使用Tkinter模块来创建简单的GUI程序。Tkinter的Widgets有:Button、Canvas、Checkbutton、Entry、Frame、Label、Listbox、Menu、Menubutton、Message、Radiobutton、Scales、Scrollbar、TEXT、Toplevel等。例:# This program displays an empty window.import Tkinterdef main(): main_window = Tkinter.Tk() Tkinter.mainloop()main()例2:... 阅读全文
摘要:
Linux内核一、Linux内核Linux内核的源码树已经有超过20000个文件,超过600万行代码。这还是几年前的数据。需要工具、根文件系统、Linux应用程序共同建立一个可用的系统。1、内核版本当前的Linux内核版本为2.6.28。版本命名规则如下:VERSION = 2PATCHLEVEL = 6SUBLEVEL = 28EXTRAVERSION =NAME =内核包含的文件:/include/linux/version.h2、内核结构Linux内核的布局、组织和结构(1) 顶层源目录顶层内核源目录包含下列子目录:arch crypto Documentation ... 阅读全文
摘要:
Python学习笔记(8)一、递归函数调用自身,即为递归函数。例子:def main(): message()def message(): print 'This is a recursive function.' message()main()结果:This is a recursive function.This is a recursive function....... File "C:/temp/p19.py", line 5, in message message()RuntimeError: maximum recursion depth ex 阅读全文