python 函数(def)

Posted 一个选择

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 函数(def)相关的知识,希望对你有一定的参考价值。

函数(def)

函数就是给一段程序起一个名字,用这个名字来执行一段程序,反复使用。

关键字‘def‘来定义,identifier(参数)

函数运用例子:

1、

def boy():

  print(”hi,world“)

以上这个函数比较简单,运行这个函数,只是打印出hi,world

2、

def boy(a,b):

  c=a+b

  return c

以上这个函数,运行后,如果给定两个值,即对这两个值进行相加,且返回值

3、

def boy(str,times):

  c=str * times

  return c

以上这个函数,给定一个字符串,和数字,即返回相应的数量

4、

def boy(str,times = 1):

  c=str * times

  return c

以上这个函数,有一个默认值1,如果没有对函数经给多少值,他默认就是输出1次

5、

def boy(a,b=2,c=9)

  print(a,b,c)

boy(111,21)

boy(54,c=8)

boy(k)

运行以上函数,是定义多个默认值

 

以上是关于python 函数(def)的主要内容,如果未能解决你的问题,请参考以下文章

Python - def 函数

python用def函数

python 函数(def)

Python学习:函数(function)

python_30期函数def 函数名():

python_30期函数def 函数名():