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

Python --函数学习1

时间:2019-05-11 10:53:46      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:缩进   init   数学   print   his   特定   pytho   函数   pps   

函数

-函数是代码的一种组织形式

-函数应该能完成一项特定的工作,而且一般一个函数完成一项工作

-函数的使用:

  函数使用需要先定义

  使用函数,俗称调用

pps:1.只是定义的话不会执行

  2.def关键字,后跟一个空格

  3.函数名,自己定义,起名需要遵循命名规则,约定俗成,大驼峰命名只给类用

  4.后面括号和冒号不能省略,括号内可以有参数

  5.函数内所有代码缩进

example:

>>> def fun():
...     print("hello world")    #这是函数内容
...
>>> print("hello this is not a definition")  #这是与def 平级的,不是函数的内容
hello this is not a definition
>>> fun ()   #这才是调用函数
hello world
>>>

 

Python --函数学习1

标签:缩进   init   数学   print   his   特定   pytho   函数   pps   

原文地址:https://www.cnblogs.com/clairedandan/p/10847904.html

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