ls = list(i for i in range(10)) ####快速创建了一个里面都是整数的list
ln = list(str(i) for i in range(10)) ####快速创建了一个里面都是字符串的list