python常用用法总结

华电北风吹
日期:2016-04-06

一、通用函数

len
in
not in

二、list常用函数

multilist = [[0 for j in range(n)] for i in range(m)]
list.append()
list.insert(i)
list.pop()
list.pop(i)
students = [('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]
students.sort(key=lambda student : student[2])
students=sorted(students, key=lambda student : student[2])

三、字符串常用函数

str=raw_input()
str=str.zfill(8)
num=int(str)
str=bin(num)
list=str.split(" ")

四、dict常用函数

dict={}
dict["Michel"]=90
if dict.get("Sara")==None:
    print "No Sara"
if "Sara" not in dict.keys():
    print "No Sara"
dict.pop("Michel")

五、set常用函数

s=set()
s1=set([1, 2, 3])
s2=set([2, 3, 4])
s=s1&s2
s=s1|s2
s.remove(2)
s.add(6)

你可能感兴趣的:(python常用用法总结)