Python常识1

自定义函数

函数通过def关键字定义

Python

1def printMax(a, b=2):
2    if a > b:
3        print a, 'is maximum'
4    else:
5        print b, 'is maximum'
6printMax(3, 4) # 调用
7x = 5
8y = 6
9printMax(x, y) # 调用

要使用global语句访问函数外的变量
使用关键参数 (假设其他参数都有默认值,我们可以只给我们想要的那些参数赋值)

Python

1def func(a, b=5, c=10):
2    print 'a is', a, 'and b is', b, 'and c is', c
3 
4func(3, 7)
5func(25, c=24)
6func(c=50, a=100)

return xx #返回值,并跳出函数

Python

1def someFunction():
2    <strong>pass</strong> # pass 表示一空的语句块 类似 C#、php中的 空;

DocStrings 文档字符串,一般用来描述对象或函数功能,是个很实用的功能
可在Python发行版附带的pydoc命令,与help()类似地使用DocStrings
惯例是一个多行字符串,它的首行以大写字母开始,句号结尾。第二行是空行,从第三行开始是详细的描述。

Python

01def printMax(x, y):
02    '''Prints the maximum of two numbers.
03 
04    The two values must be integers.'''
05    x = int(x) # convert to integers, if possible
06    y = int(y)
07 
08    if x > y:
09        print x, 'is maximum'
10    else:
11        print y, 'is maximum'
12 
13printMax(3, 5)
14print printMax.__doc__

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值