三、Python:函数、模块、⽂档字符串        本章我们了看⼀下Python中的函数、模块、⽂档字符串
⼀、函数
1、不带参数的函数
def second():
return "aa\n-------------"
#函数调⽤
print second()
2、带参数的函数
#带默认值的函数
def first(a="MyGold",b="YOU"):
python中文文档print "the first function!->%s || %s" %(a,b)
print "-------------"
#函数调⽤⽅式
first(b="Hello",a="China")
first(b="we")
first()
运⾏结果:
⼆、模块
#1、输出该脚本所在的模块名
print __name__,            #加"," ⽬的消除⾏尾的换⾏符
#2、输出模块中定义的标⽰符<;函数,类,变量>
import sys
print dir(sys)
三、⽂档字符串
def third():
#该注释适⽤于模块和类,函数
'''
this is function note
------------
'''
print third.__doc__
运⾏结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。