def定义函数
def sayhello():
print(“hello world”)
sayhello()
如何做传入参数的做法
def max(a,b):
if a>b:
reture a
else:
reture b
print(max(2,3))
博客列表 >五.Python面向对象
def定义函数
def sayhello():
print(“hello world”)
sayhello()
如何做传入参数的做法
def max(a,b):
if a>b:
reture a
else:
reture b
print(max(2,3))