COMP9021 Principles of Programming WEEK4 Optional
sort函数,lambda函数,filter函数,for_else循环控制1.sort()L.sort(key)对L使用key规则进行排序,返回None值,使用时不要assign一个list=.sort()fromrandomimportrandrangeL=[randrange(20)for_inrange(10)]L.sort()L>>>[0,2,5,6,7,7,16,18,19,19]#ke