美文网首页程序员
day 3(python notes)

day 3(python notes)

作者: 君宝儿 | 来源:发表于2016-05-13 20:44 被阅读42次

note 1:python中函数声明 def 函数名(形参列表): 。函数没有标明函数的开始结束花括号。函数名下的每条语句要使用tab缩进,没有缩进的第一行视为与函数同级别的程序语句。
note 2:Python参数传递是引用传递,实参和形参共用同一地址的存储单元。
note 3:Python语言中一切都是对象,函数也是一个对象,可以像普通对象一样使用,把一个函数赋值给另一个变量。
note 4:可变长参数(不定长参数)若参数以开头代表一个任意长度的元组,可以接收连续一串参数。参数以两个开头代表一个字典,参数形式是key=value,可接收连续任意多个参数。def foo(x,y,*z):
note 5:全局变量声明指定义在函数体外的变量,全局变量声明使用关键字global。
note 6:模块是最高级别的程序单元,将程序代码和数据封装起来以便重用。一个模块可以包含多个函数。模块也分系统和用户自定义模块(即一个.py文件)
note 7:引入模块import moduleName,引入模块下的函数from moduleName import function1,function2,引入模块多有函数from moduleName import *

相关文章

  • day 3(python notes)

    note 1:python中函数声明 def 函数名(形参列表): 。函数没有标明函数的开始结束花括号。函数名下的...

  • MacOS python3 install robotfram

    install robotframework-ride-1.7.3.1 for python3 notes:rob...

  • Python notes(3/3)

    目录 一,Python 面向对象 二,Python 正则表达式 三,Python CGI编程 四,Python 操...

  • python3 学习笔记

    Python3 Study Notes 本人很少写 python 代码, 一般都是用 go 的, 去年时用 pyt...

  • day 6(python notes)

    note 1:python操作数据库,分别是数据库连接对象,游标。打开数据库时返回conn对象,是数据库连接对象c...

  • day 4(python notes)

    note 1:声明类 class 类名:对象定义对象p=类名()。note 2:类属性,属性名前加""表明为私有...

  • day 2(python notes)

    介绍Python的几种序列,字符串,列表,元组 note 1:list=[1,1.3,"a"] list[1:2]...

  • day 5(python notes)

    note1:继承通过派生类和基类实现。基类称为父类,派生类称为子类。继承语法如下:class SubClassNa...

  • python爬虫学习-day7-实战

    目录 python爬虫学习-day1 python爬虫学习-day2正则表达式 python爬虫学习-day3-B...

  • Python 基础爬虫目录

    目录 python爬虫学习-day1 python爬虫学习-day2正则表达式 python爬虫学习-day3-B...

网友评论

    本文标题:day 3(python notes)

    本文链接:https://www.haomeiwen.com/subject/wdkmrttx.html