多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 函数的文档说明 ~~~ >>> def test(a,b): ... '''用来完成对2个数求和''' ... print("%d"%(a+b)) ... >>> >>> test(11,22) 33 ~~~ ~~~ >>> def test(a,b): ... """用来完成对2个数求和""" ... print("%d"%(a+b)) ... >>> >>> test(11,22) 33 ~~~ 如果执行,以下代码 ~~~ >>> help(test) ~~~ 能够看到test函数的相关说明 ~~~ Help on function test in module __main__: test(a, b) 用来完成对2个数求和 (END) ~~~