python生成器
摘要:
def func_list_empty(l = []): l.append(2) return l def func_list_none(l = None): if l == None: l = [] l.append(2) return l def test_list_empty(l = []): func_l... 阅读全文
posted @ 2016-08-03 15:59 与非朋仔 阅读(159) 评论(0) 推荐(0) 编辑