标签:三元运算 color pre pytho 学习 三元 class python学习 函数
一句话的python
三元运算
列表、元组、生成器表达式
def multipliers(): new_l = [] for i in range(4): def func(x): return x*i new_l.append(func) return new_l return [lambda x: i * x for i in range(4)] #6,6,6,6
标签:三元运算 color pre pytho 学习 三元 class python学习 函数
原文地址:http://www.cnblogs.com/Amery313/p/7501965.html