摘要: 1.面向过程 vs 函数式编程 面向过程: s1 = 'asdfqweqmvas' count = 0 for i in s1: count += 1 print(count) lst = [i for i in range(100)] count = 0 for i in lst: count + 阅读全文
posted @ 2019-01-23 16:35 小脂肪 阅读(158) 评论(0) 推荐(0) 编辑