python常用函数大全

python内置函数大全

abs()绝对值
divmod()返回余数
input()接收函数
open()打开文件
staticmethod()返回静态方法
all()     enumerate()     int()     ord()
str()     any()     eval()     isinstance()获取属性
pow()     sum()     basestring()     execfile()
issubclass()     print()     super()
bin()     file()     iter() property()     tuple()
bool()     filter()     len()     range()     type()获取属性
bytearray()     float()     list()     raw_input()
unichr()
callable()     format()     locals()     reduce()高阶函数 Getattr()获取对象具体属性
chr()
frozenset() long() reload() vars()
classmethod() getattr() map()高阶函数 repr()
xrange()
cmp() globals() max() reverse()
zip()
compile() hasattr()判断对象属性 memoryview() round()
import()
complex() hash() min() set()
Map(函数,[])指定序列做映射
delattr() help() next() setattr()设置对象属性
dict() hex() object() slice()
dir() id() oct() sorted() exec 内置表达式

list常用操作

list01 = [‘runoob’, 786, 2.23, ‘john’, 70.2]
list02 = [123, ‘john’]
print list01print list02
列表截取
print list01[0]print list01[-1] print list01[0:3]

列表重复
print list01 * 2

列表组合
print list01 + list02

获取列表长度
print len(list01)

删除列表元素
del list02[0] print list02

元素是否存在于列表中
print ‘john’ in list02 # True

迭代
for i in list01:
print i

比较两个列表的元素
print cmp(list01, list02)

列表最大/最小值
print max([0, 1, 2, 3, 4]) print min([0, 1])

将元组转换为列表
aTuple = (1,2,3,4)
list03 = list(aTuple)print list03

在列表末尾添加新的元素
list03.append(5) print list03

在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)
list03.extend(list01)print list03

统计某个元素在列表中出现的次数
print list03.count(1)

从列表中找出某个值第一个匹配项的索引位置
print list03.index(‘john’)

将对象插入列表
list03.insert(0, ‘hello’) print list03

移除列表中的一个元素(默认最后一个元素),并且返回该元素的值
print list03.pop(0)print list03

移除列表中某个值的第一个匹配项
list03.remove(1) print list03

反向列表中元素
list03.reverse() print list03

对原列表进行排序
list03.sort() print list03

对原列表进行切片
list03.split(‘’,1) print list03

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值