1,列表及相关的内置函数。
2,sort和sorted有啥不一样的。
sort按单词首字母默认排序
sort(key=lambda x:len(x))
按长度排
sort(key=lambda x:(len(x),x)
长度排后再按字符排
enumerate,匹配。。。。
zip,归并。。。