标签:很多 onclick ima 工作 技术 img monkey none eve
在py中,如果过我们需要一个列表,但是这个列表要求需要进行格式输出并编号。如果我们不知道列表推导式是这样实现
g = [] for i in range(20): g.append(‘套你大象{}‘.format(i)) print(g)
但是,当我们了解了列表推导式后,我们可以这样写。
monkey = [‘猴子%s‘%i for i in range(100)] print(monkey)
当然,我们还可以进行这样操作。
monkey = [‘猴子%s‘%i**2 for i in range(100)] print(monkey)
很多类似的操作也是可以做到的,可以帮我们大大的简化代码工作量。
标签:很多 onclick ima 工作 技术 img monkey none eve
原文地址:https://www.cnblogs.com/zly9527/p/11386167.html