Python中常用内置函数学习

Python中的各个函数集合

时刻补充中。。。。。。

一、range函数

函数原型:range(start, end, scan)

参数含义:

start:计数从start开始。默认是从0开始。例如range(5)等价于range(0, 5);

end:计数到end结束,但不包括end.例如:range(0, 5) 是[0, 1, 2, 3, 4]没有5

scan:每次跳跃的间距,默认为1。例如:range(0, 5) 等价于 range(0, 5, 1)

注意,对于for i in range(5):,在for循环中,实际上是根据range的值对i进行了赋值操作,所以不论在for中如何更改i的值,在下一次循环前,i的值都会重新赋值,其依次赋值为0、1、2、3、4。

二、if not的应用

python中判断变量是否为None三种写法:

1、if x is None

2、if not x

3、if not x is None 理解成 if not (x is None) 结果是和1相反的
python中None、false、""、0、[]、{}、()时,采用not 方法判断是相等的

not None == not false == not '' == not 0 == not[] == not{
     } == not()

你可能感兴趣的:(Python学习教程,python,大数据)