map reduce 用法 str處理lower() capitalize()
阿新 • • 發佈:2017-09-11
rod str -s tip col key mps capital 元素
--
1 s=‘123456‘ 2 l={‘0‘:0,‘1‘:1,‘2‘:2,‘3‘:3,‘4‘:4,‘5‘:5,‘6‘:6,‘7‘:7,‘8‘:8,‘9‘:9}[s[0]] 3 print(l)
取出dic裏面key的元素
1 def normalize(name): 2 tempn=name.lower().capitalize() 3 return tempn 4 L1 = [‘adam‘, ‘LISA‘, ‘barT‘] 5 L2 = list(map(normalize, L1)) 6 print(L2)
只大寫第一個字母,其余小寫 其中用到 字符串 lower() capitalize() 函數
1 ##sum 2 num1=[20,30,50] 3 print(sum(num1[1:])) 4 ##multiply 5 def prod(L): 6 return reduce(lambda x,y:x*y ,L) 7 L3=[1,2,3,4,6] 8 print(prod(L3[:2])) 9 print(1*2)
List 求和和求積函數 其中用到 reduce lambda表達式
1 def str2float(s): 2 tempstr=s.split(‘.‘) 3 ustr=tempstr[0]+tempstr[1] 4 defstr2num(r): 5 return {‘0‘: 0, ‘1‘: 1, ‘2‘: 2, ‘3‘: 3, ‘4‘: 4, ‘5‘: 5, ‘6‘: 6, ‘7‘: 7, ‘8‘: 8, ‘9‘: 9}[r] 6 ws=len(tempstr[1]) 7 return reduce(lambda x, y: x * 10 + y, map(str2num, ustr))/(10**ws)
--str轉換float函數。 思路去掉小數點,轉換成整數,然後除以小數點的位數。
map reduce 用法 str處理lower() capitalize()