标签:偶数 style for int lis div color pytho bsp
一、1到10以内的平方。
newlist=[i**2 for i in range(10)] print(newlist)
二、1到10以内的偶数平方。
newlist2=[i**2 for i in range(10) if i%2==0] print(newlist3)
标签:偶数 style for int lis div color pytho bsp
原文地址:https://www.cnblogs.com/aliensky/p/11291619.html