码迷,mamicode.com
首页 > 编程语言 > 详细

Python12,函数

时间:2018-10-09 23:11:04      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:first   name   说明   通过   fun   The   nbsp   结果   语法   

三种编程方式:

  1、面向对象,以类为主--class

  2、面向过程,以过程为主--def

  3、函数式编程,以函数为主--def

 

函数的定义——函数是指将一组语句的集合通过一个函数名封装起来,需要执行的时候调用函数名即可。

 

使用函数的优点:

  减少重复编写代码

  使程序更易于扩展

  便于统一维护与更改

 

函数的语法:

  def 函数名():

    函数执行语句

 

无参数函数调用

  def func_test1():

    "This is the first test function" #写一行注释说明很重要,不影响运行

    print("Line in test function 1")

  func_test1()

运行结果:

  Line in test function 1

 

带一个参数的函数调用  

  def func_test2(name):    

    print("my name is :",name)

  func_test2(‘Frank‘)

运行结果:

  my name is : Frank

Python12,函数

标签:first   name   说明   通过   fun   The   nbsp   结果   语法   

原文地址:https://www.cnblogs.com/wangfei1248/p/9763660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!