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

Step3- Python基础3 函数、递归、内置函数

时间:2017-07-09 22:10:51      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:定义   div   function   blog   定义函数   cti   class   test   efi   

一、函数基本语法及特性

Python中函数的定义方法:

def test(x): #定义函数的关键字,()内可定义形参
    "The function definitions" #文档描述
    x += 1 #逻辑语句
    return x #定义返回值

 

Step3- Python基础3 函数、递归、内置函数

标签:定义   div   function   blog   定义函数   cti   class   test   efi   

原文地址:http://www.cnblogs.com/Nick-Peggy/p/7143115.html

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