编程语言
首页 > 编程语言> > 【python基础教程】(5)Python3 函数

【python基础教程】(5)Python3 函数

作者:互联网

Python3 函数

函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段。

函数能提高应用的模块性,和代码的重复利用率。你已经知道Python提供了许多内建函数,比如print()。但你也可以自己创建函数,这被叫做用户自定义函数。

1、定义一个函数

你可以定义一个由自己想要功能的函数,以下是简单的规则:

 2、语法

Python 定义函数使用 def 关键字,一般格式如下:

def 函数名(参数列表):
    函数体

默认情况下,参数值和参数名称是按函数声明中定义的顺序匹配起来的。

3、实例

让我们使用函数来输出"Hello World!":

# -*- coding:utf-8 -*-


def hello():
    print("hello,yin~")


hello()

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
hello,yin~

Process finished with exit code 0

更复杂点的应用,函数中带上参数变量:

比较两个数,并返回较大的数:

# -*- coding:utf-8 -*-

def max(a, b):
    if a > b:
        return a
    else:
        return b


a = 3
b = 4
print(max(a, b))

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
4

Process finished with exit code 0

 

计算面积函数:

# -*- coding:utf-8 -*-
def area(width, height):
    return width * height


def hello(name):
    print("hello~", name)


hello("yin")
width = 7
height = 9
print("宽度为%d" % width, "长度为%d" % height,  "面积为:%d" % area(width, height))

 

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
hello~ yin
宽度为7 长度为9 面积为:63

Process finished with exit code 0

 

4、函数调用

定义一个函数:给了函数一个名称,指定了函数里包含的参数,和代码块结构。

这个函数的基本结构完成以后,你可以通过另一个函数调用执行,也可以直接从 Python 命令提示符执行。

如下实例调用了 printme() 函数:

实例:

# -*- coding:utf-8 -*-


def hello(str):
    print(str)
    return


hello("第一次调用函数:good morning!")
hello("第二次调用函数:good afternonn!")

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
good morning!
good afternonn!

Process finished with exit code 0

 

5、参数传递

在 python 中,类型属于对象,变量是没有类型的:

a=[1,2,3]

a="Runoob"

以上代码中,[1,2,3] 是 List 类型,"Runoob" 是 String 类型,而变量 a 是没有类型,她仅仅是一个对象的引用(一个指针),可以是指向 List 类型对象,也可以是指向 String 类型对象。

6、可更改(mutable)与不可更改(immutable)对象

在 python 中,strings, tuples, 和 numbers 是不可更改的对象,而 list,dict 等则是可以修改的对象。

python 函数的参数传递:

python 中一切都是对象,严格意义我们不能说值传递还是引用传递,我们应该说传不可变对象和传可变对象。

7、python 传不可变对象实例

通过 id() 函数来查看内存地址变化:

# -*- coding:utf-8 -*-


def change(a):
    print(id(a))
    a = 10
    print(id(a))


print(id(1))

a = 1
change(a)

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
140707141873920
140707141873920
140707141874208

Process finished with exit code 0

可以看见在调用函数前后,形参和实参指向的是同一个对象(对象 id 相同),在函数内部修改形参后,形参指向的是不同的 id。

8、传可变对象实例

 可变对象在函数里修改了参数,那么在调用这个函数的函数里,原始的参数也被改变了。例如:

# -*- coding:utf-8 -*-


def changeme(mylist):
    mylist.append([1, 2, 3, 4])
    print("函数内取值", mylist)
    return


mylist = [10, 20, 30, 40]
changeme(mylist)
print("函数外取值", mylist)

 

执行结果:

C:\Users\yzp\PycharmProjects\base_practice\Scripts\python.exe D:/00test/base_practice/01test.py
函数内取值 [10, 20, 30, 40, [1, 2, 3, 4]]
函数外取值 [10, 20, 30, 40, [1, 2, 3, 4]]

Process finished with exit code 0

 

9、参数: 

以下是调用函数时可使用的正式参数类型:

10、必需参数

必需参数须以正确的顺序传入函数。调用时的数量必须和声明时的一样。

调用 printme() 函数,你必须传入一个参数,不然会出现语法错误:

实例:

#!/usr/bin/python3
 
#可写函数说明
def printme( str ):
   "打印任何传入的字符串"
   print (str)
   return
 
# 调用 printme 函数,不加参数会报错
printme()

 

执行结果:

Traceback (most recent call last):
  File "test.py", line 10, in <module>
    printme()
TypeError: printme() missing 1 required positional argument: 'str'

 

11、 关键字参数

关键字参数和函数调用关系紧密,函数调用使用关键字参数来确定传入的参数值。

使用关键字参数允许函数调用时参数的顺序与声明时不一致,因为 Python 解释器能够用参数名匹配参数值。

以下实例在函数 printme() 调用时使用参数名:

#!/usr/bin/python3
 
#可写函数说明
def printme( str ):
   "打印任何传入的字符串"
   print (str)
   return
 
#调用printme函数
printme( str = "hello.yin")

 

执行结果:

hello.yin

 

以下实例中演示了函数参数的使用不需要使用指定顺序:

实例:

#!/usr/bin/python3
 
#可写函数说明
def printinfo( name, age ):
   "打印任何传入的字符串"
   print ("名字: ", name)
   print ("年龄: ", age)
   return
 
#调用printinfo函数
printinfo( age=26, name="yin" )

 

执行结果:

名字:  yin
年龄:  26

 

12、默认参数

调用函数时,如果没有传递参数,则会使用默认参数。以下实例中如果没有传入 age 参数,则使用默认值:

实例:

#!/usr/bin/python3
 
#可写函数说明
def printinfo( name, age = 26 ):
   "打印任何传入的字符串"
   print ("名字: ", name)
   print ("年龄: ", age)
   return
 
#调用printinfo函数
printinfo( age=27, name="yin" )
print ("------------------------")
printinfo( name="yin" )

 

执行结果:

名字:  yin
年龄:  27
------------------------
名字:  yin
年龄:  26

13、不定长参数

你可能需要一个函数能处理比当初声明时更多的参数。这些参数叫做不定长参数,和上述 2 种参数不同,声明时不会命名。基本语法如下

def functionname([formal_args,] *var_args_tuple ):
   "函数_文档字符串"
   function_suite
   return [expression]

加了星号 * 的参数会以元组(tuple)的形式导入,存放所有未命名的变量参数。

实例:

#!/usr/bin/python3
  
# 可写函数说明
def printinfo( arg1, *vartuple ):
   "打印任何传入的参数"
   print ("输出: ")
   print (arg1)
   print (vartuple)
 
# 调用printinfo 函数
printinfo( 70, 60, 50 )

 

执行结果:

输出: 
70
(60, 50)

如果在函数调用时没有指定参数,它就是一个空元组。我们也可以不向函数传递未命名的变量。如下实例:

实例:

#!/usr/bin/python3
 
# 可写函数说明
def printinfo( arg1, *vartuple ):
   "打印任何传入的参数"
   print ("输出: ")
   print (arg1)
   for var in vartuple:
      print (var)
   return
 
# 调用printinfo 函数
printinfo( 10 )
printinfo( 70, 60, 50 )

 

执行结果:

#!/usr/bin/python3
 
# 可写函数说明
def printinfo( arg1, *vartuple ):
   "打印任何传入的参数"
   print ("输出: ")
   print (arg1)
   for var in vartuple:
      print (var)
   return
 
# 调用printinfo 函数
printinfo( 10 )
printinfo( 70, 60, 50 )

还有一种就是参数带两个星号 **基本语法如下:

def functionname([formal_args,] **var_args_dict ):
   "函数_文档字符串"
   function_suite
   return [expression]

加了两个星号 ** 的参数会以字典的形式导入

实例:

#!/usr/bin/python3
  
# 可写函数说明
def printinfo( arg1, **vardict ):
   "打印任何传入的参数"
   print ("输出: ")
   print (arg1)
   print (vardict)
 
# 调用printinfo 函数
printinfo(1, a=2,b=3)

 

执行结果:

输出: 
1
{'a': 2, 'b': 3}

声明函数时,参数中星号 * 可以单独出现,例如:

def f(a,b,*,c):
    return a+b+c

如果单独出现星号 * 后的参数必须用关键字传入。

>>> def f(a,b,*,c):
...     return a+b+c
... 
>>> f(1,2,3)   # 报错
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: f() takes 2 positional arguments but 3 were given
>>> f(1,2,c=3) # 正常
6
>>>

14、匿名函数

python 使用 lambda 来创建匿名函数。

所谓匿名,意即不再使用 def 语句这样标准的形式定义一个函数。

语法

lambda 函数的语法只包含一个语句,如下:

lambda [arg1 [,arg2,.....argn]]:expression

 

实例:

#!/usr/bin/python3
 
# 可写函数说明
sum = lambda arg1, arg2: arg1 + arg2
 
# 调用sum函数
print ("相加后的值为 : ", sum( 10, 20 ))
print ("相加后的值为 : ", sum( 20, 20 ))

以上实例输出结果:

相加后的值为 :  30
相加后的值为 :  40

 

15、return语句

return [表达式] 语句用于退出函数,选择性地向调用方返回一个表达式。不带参数值的return语句返回None。之前的例子都没有示范如何返回数值,以下实例演示了 return 语句的用法:

实例:

#!/usr/bin/python3
 
# 可写函数说明
def sum( arg1, arg2 ):
   # 返回2个参数的和."
   total = arg1 + arg2
   print ("函数内 : ", total)
   return total
 
# 调用sum函数
total = sum( 10, 20 )
print ("函数外 : ", total)

以上实例输出结果:

函数内 :  30
函数外 :  30

 

16、强制位置参数

Python3.8 新增了一个函数形参语法 / 用来指明函数形参必须使用指定位置参数,不能使用关键字参数的形式。

在以下的例子中,形参 a 和 b 必须使用指定位置参数,c 或 d 可以是位置形参或关键字形参,而 e 和 f 要求为关键字形参:

def f(a, b, /, c, d, *, e, f):
    print(a, b, c, d, e, f)

以下使用方法是正确的:

f(10, 20, 30, d=40, e=50, f=60)

以下使用方法会发生错误:

f(10, b=20, c=30, d=40, e=50, f=60)   # b 不能使用关键字参数的形式
f(10, 20, 30, 40, 50, f=60)           # e 必须使用关键字参数的形式 

标签:return,函数,python,printinfo,参数,def,基础教程,print,Python3
来源: https://www.cnblogs.com/yinzuopu/p/15553887.html