标签:end print += append color span int code style
1 sum = 0 2 l = [] 3 for i in range(1,1000): 4 if i%3 == 0 and i%5 == 0: 5 sum += 1 6 l.append(i) 7 print(l) 8 print(sum)
标签:end print += append color span int code style
原文地址:https://www.cnblogs.com/reaix/p/12651193.html