#python函数定义及调用
# 无参函数
def show():
	print('hello')
show() # 调用
 
# 有参函数
def add(a, b):
	return a+b
print(add(2,3)) # 调用

# 参数带有默认值
def hi(x, y = 100):
	print(x+y)
hi(10) # 调用


你可能感兴趣的文章