编程语言
首页 > 编程语言> > Python学习之函数

Python学习之函数

作者:互联网

函数

def 函数名(形参):
	实现操作
函数名(实参)

传递实参

def describe_pets(animal_type, pet_name):
    print('I have a ' + animal_type)
    print('Its name is ' + pet_name)

# 位置实参
describe_pets('dog', '旺财')
# 关键字实参
describe_pets(pet_name='小花', animal_type='cat')

def describe_pets(pet_name, animal_type='dog'):
    print('I have a ' + animal_type)
    print('Its name is ' + pet_name)
    #调用
describe_pets('阿宝')
describe_pets('阿财', 'cat')
def make_pizza(*toppings):
    print(toppings)


make_pizza('carrots')
make_pizza('mashrooms', 'green peppers', 'cheese')

返回值

#函数可以返回任何类型的值,包括列表和字典等较复杂的数据结构
return +返回值

标签:函数,形参,animal,Python,describe,学习,pets,实参,name
来源: https://blog.csdn.net/weixin_40400161/article/details/95951506