1.字符串轉list (list)函數
s = 'abcde'
print list(s)spa
['a', 'b', 'c', 'd', 'e']字符串
2.list轉字符串 (join)lambda
tmp = ['a', 'b', 'c', 'd', 'e']
print ''.join(tmp)map
abcdeim
3.字符串轉dict (eval)sort
將字符串str當成有效的表達式來求值並返回計算結果。dict
s = "{'name' : 'jim', 'sex' : 'male', 'age': 18}" s_dict = eval(s) print type(s_dict) print s_dict['name']
<type 'dict'>
jimdi
4. map函數co
map()函數接收兩個參數,一個是函數,一個是序列,map將傳入的函數依次做用到序列的每一個元素,並把結果做爲新的list返回。
使用map函數須要預先定義一個函數。以下,定義了add函數。
def add(x):
return x+2
tmp = [1,2,3,4,5,6]
print map(add, tmp)
[3, 4, 5, 6, 7, 8]
5.reduce函數
reduce把一個函數做用在一個序列[x1, x2, x3...]上,這個函數必須接收兩個參數,reduce把結果繼續和序列的下一個元素作累積計算
def sum(x,y):
return x+y
tmp = [1,2,3,4,5,6]
print reduce(sum, tmp)
21
6.sorted
sort()與sorted()的不一樣在於,sort是在原位從新排列列表,而sorted()是產生一個新的列表。
print sorted([5, 2, 3, 1, 4])
[1, 2, 3, 4, 5]
L = [('b',2),('a',1),('c',3),('d',4)]
print sorted(L, cmp=lambda x,y:cmp(x[1],y[1]))
print sorted(L, key=lambda x:x[1])
[('a', 1), ('b', 2), ('c', 3), ('d', 4)] [('a', 1), ('b', 2), ('c', 3), ('d', 4)]