课程
/后端开发
/Python
/初识Python
请定义一个 greet() 函数,它包含一个默认参数,如果没有传入,打印 'Hello, world.',如果传入,打印 'Hello, xxx.'
求解:详细步骤加理解
2018-05-20
源自:初识Python 7-6
正在回答
def greet(name='world'): #定义函数,与默认值
print('hello,',name) 输出
greet() 获取参数,无变量使用默认值
greet('Bart') 获取参数,有参数使用参数值
python 3
def greet(a='world'):
def
greet(a
=
'world'
):
print 'Hello,' + a + '.'
print
'Hello,'
+
a + '.'
greet()
greet('xxx')
greet(
'xxx'
)
def greet(a='world'): print 'Hello,'+a greet() greet('xxx')
慕蓉Babysbreath 提问者
weibo_小宝宝囍_0 回复 慕蓉Babysbreath 提问者
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序