在本章中,将学习编写函数,还会学习向函数传递信息的方式,如何编写主要任务是显示信息的函数,还有用于处理数据并返回一个或一组值的函数。最后,将学习如何将函数存储在被称为 模块 的独立文件中,让主程序文件的组织更为有序。
1.1 定义函数
def greet_user():
print("Hello!")
greet_user()
注意:编写函数时,需要牢记几个细节。应给函数指定描述性名称,且只在其中使用小写字母和下划线。描述性名称可帮助你和别人明白代码想要做什么。给模块命名时也应遵循上述
约定。
1.1.1 向函数传递信息
引入两个概念:形参和实参。
实参是在函数调用中传递给函数的具体数值或对象,而形参是在函数定义时声明的用于接收实参的变量或参数。简单来说,实参是传递给函数的值,而形参是函数中用来接收这些值的变量。
例如:
def greet_user(username):
print("Hello, " + username.title() + "!")
greet_user('jesse')
1.2 传递实参
1.2.1 位置实参
def describe_pet(animal_type, pet_name):
print("\nI have a " + animal_type + ".")
print("My " + animal_type + "'s name is " + pet_name.title() + ".")
describe_pet('hamster', 'harry')
注意:实参顺序与形参顺序必须保持一致,不然可能会闹笑话咯~
1.2.2 关键字实参
def describe_pet(animal_type, pet_name):
print("\nI have a " + animal_type + ".")
print("My " + animal_type + "'s name is " + pet_name.title() + ".")
describe_pet(animal_type='hamster', pet_name='harry')
animal_type='hamster', pet_name='harry' 明确地指出了各个实参对应的形参。
关键字实参的顺序无关紧要,因为Python知道各个值该存储到哪个形参中。
注意:使用关键字实参时,务必准确地指定函数定义中的形参名。
1.2.3 默认值
def describe_pet(pet_name, animal_type='dog'):
print("\nI have a " + animal_type + ".")
print("My " + animal_type + "'s name is " + pet_name.title() + ".")
describe_pet(pet_name='willie')
注意:Python依然将这个实参视为位置实参。使用默认值时,在形参列表中必须先列出没有默认值的形参,再列出有默认值的实参。这让Python依然能够正确地解读位置实参。
# 一条名为Willie的小狗
describe_pet('willie') describe_pet(pet_name='willie')
# 一只名为Harry的仓鼠
describe_pet('harry', 'hamster')
describe_pet(pet_name='harry', animal_type='hamster')
describe_pet(animal_type='hamster', pet_name='harry')
1.3 返回值
1.3.1 返回简单值
def get_formatted_name(first_name, last_name):
full_name = first_name + ' ' + last_name
return full_name.title()
musician = get_formatted_name('jimi', 'hendrix')
print(musician)
1.3.2 让实参变成可选
还是上面的例子,但假设我们要扩展函数get_formatted_name() ,使其还需要处理中间名。
def get_formatted_name(first_name, middle_name, last_name):
full_name = first_name + ' ' + middle_name + ' ' + last_name
return full_name.title()
def get_formatted_name(first_name, last_name, middle_name=''):
if middle_name:
full_name = first_name + ' ' + middle_name + ' ' + last_name
else:
full_name = first_name + ' ' + last_name
return full_name.title()
musician = get_formatted_name('jimi', 'hendrix')
print(musician)
musician = get_formatted_name('john', 'hooker', 'lee')
print(musician)
1.3.3 返回字典
函数可返回任何类型的值,包括列表和字典等较复杂的数据结构。
同样还是用姓名的例子简单版本,我们增加一个年龄信息,但使用字典。
def build_person(first_name, last_name, age=''):
person = {'first': first_name, 'last': last_name}
if age:
person['age'] = age
return person
musician = build_person('jimi', 'hendrix', age=27)
print(musician)
1.4 传递列表
def greet_users(names):
for name in names:
msg = "Hello, " + name.title() + "!"
print(msg)
usernames = ['hannah', 'ty', 'margot']
greet_users(usernames)
1.4.1 在函数中修改列表
def print_models(unprinted_designs, completed_models):
"""
模拟打印每个设计,直到没有未打印的设计为止
打印每个设计后,都将其移到列表completed_models中
"""
while unprinted_designs:
current_design = unprinted_designs.pop()
# 模拟根据设计制作3D打印模型的过程
print("Printing model: " + current_design)
completed_models.append(current_design)
def show_completed_models(completed_models):
"""显示打印好的所有模型"""
print("\nThe following models have been printed:")
for completed_model in completed_models:
print(completed_model)
unprinted_designs = ['iphone case', 'robot pendant', 'dodecahedron']
completed_models = []
print_models(unprinted_designs, completed_models)
show_completed_models(completed_models)
编写函数时,如果你发现它执行的任务太多,请尝试将这些代码划分到两个函数中。别忘了,总是可以在一个函数中调用另一个函数,这有助于将复杂的任务划分成一系列的步骤。
1.4.2 禁止函数中修改列表
因此,我们可以使用 切片表示法[:] 创建列表的副本。要将列表的副本传递给函数,可以像下面这样做:
function_name(list_name[:])
在上一示例中,如果不想清空未打印的设计列表,可像下面这样调用print_models() :
print_models(unprinted_designs[:], completed_models)
虽然向函数传递列表的副本可保留原始列表的内容,但除非有充分的理由需要传递副本,否则还是应该将原始列表传递给函数,因为让函数使用现成列表可避免花时间和内存创建副本,从而提高效率,在处理大型列表时尤其如此。
1.5 传递任意数量的实参
解决方式也很简单,举例如下:
一个制作比萨的函数,它需要接受很多配料,但你无法预先确定顾客要多少种配料。
def make_pizza(*toppings):
"""概述要制作的比萨"""
print("\nMaking a pizza with the following toppings:")
for topping in toppings:
print("- " + topping)
make_pizza('pepperoni')
make_pizza('mushrooms', 'green peppers', 'extra cheese')
1.5.1 结合 位置形参 和 任意数量形参
def make_pizza(size, *toppings):
"""概述要制作的比萨"""
print("\nMaking a " + str(size) + "-inch pizza with the following toppings:")
for topping in toppings:
print("- " + topping)
make_pizza(16, 'pepperoni')
make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
1.5.2 使用任意数量的关键字实参*
def build_profile(first, last, **user_info):
"""创建一个字典,其中包含我们知道的有关用户的一切"""
profile = {}
profile['first_name'] = first
profile['last_name'] = last
for key, value in user_info.items():
profile[key] = value
return profile
user_profile = build_profile('albert', 'einstein',
location='princeton', field='physics')
print(user_profile)
结果为:
首先先将程序以及结果阅读一遍。函数build_profile() 的定义要求提供名和姓,同时允许用户根据需要提供任意数量的名称—值对。形参**user_info 中的两个星号让Python创建一个名为user_info 的 空字典,并将收到的所有名称—值对都封装到这个字典中。在这个函数中,可以像访问其他字典那样访问user_info 中的名称—值对。
要正确地使用这些类型的实参并知道它们的使用时机,刚开始学习有一定困难,需要经过一定的练习。
1.6 将函数存储在模块中
1.6.1 导入整个模块
def make_pizza(size, *toppings):
"""概述要制作的比萨"""
print("\nMaking a " + str(size) +"-inch pizza with the following toppings:")
for topping in toppings:
print("- " + topping)
import pizza
pizza.make_pizza(16, 'pepperoni')
pizza.make_pizza(12, 'mushrooms', 'green peppers', 'extra cheese')
from module_name import *
注意:由于导入了每个函数,可通过名称来调用每个函数,而无需使用句点表示法。然而,使用 并非自己编写的大型模块时,最好不要采用这种导入方法:如果模块中有函数的名称与你的项目中使用的名称相同,可能导致意想不到的结果:Python可能遇到多个名称相同的函数或变量,进而覆盖函数,而不是分别导入所有的函数。
最佳的做法是,要么只导入你需要使用的函数,要么导入整个模块并使用句点表示法。这能让代码更清晰,更容易阅读和理解。
1.6.2 导入指定函数
使用以下语法导入特定函数,用逗号分隔函数名,可根据需要从模块中导入任意数量的函数:
from module_name import function_0, function_1, function_2
1.6.3 使用as给函数指定别名
from module_name import function_name as fn