1.使用map()
进行函数映射
✅ Exp1:将字符串数组中的小写字母转为大写字母。
测试数组为 oldlist = ['life', 'is', 'short', 'i', 'choose', 'python']。
- 方法一
newlist = [] for word in oldlist: newlist.append(word.upper())
- 方法二
list(map(str.upper, oldlist))
方法一耗时 0.5267724000000005s,方法二耗时 0.41462569999999843s,性能提升 21.29%
标签:sort,技巧,Python,oldlist,耗时,while,起飞,排序,方法 From: https://www.cnblogs.com/tuixiulaozhou/p/16768677.html