查看“Python的帮助与调试”的源代码
←
Python的帮助与调试
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
[[文件:Python file.gif|缩略图]] *在python中直接输入debug *run -d test.py *程序中设置断点,debug :pdb.set_trace() *重新载入程序 :imp.reload(myfun) *函数locals(),vars(),globals() :python中检测某个变量是否有定义 # 'var' in locals().keys() # 'var' in dir() # try: print var except NameError: print 'var not defined' ==帮助== *help(copy.copy) #def 之后'''帮助''' *print(copy.__doc__) *print(copy.__file__) #源文件地址 *print? *import module之后运行dir(module) ===如何自己写帮助=== def average(a, b): """ Return the average value (arithmetic mean) of two numbers. Parameters ---------- a : numeric A number to average. b : numeric Another number to average. Returns ------- result : numeric The average of a and b, computed using ``0.5 * (a + b)``. Example ------- >>> average(5, 10) 7.5 """
返回至“
Python的帮助与调试
”。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
已展开
已折叠
查看
阅读
查看源代码
查看历史
更多
已展开
已折叠
搜索
导航
首页
社群首页
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息