题解 | #前10个偶数#
前10个偶数
https://www.nowcoder.com/practice/b369718b3a904c2f845d135781120048
a = [int(i) for i in range(0, 20,2)]
for t in a:
print(t)
前10个偶数
https://www.nowcoder.com/practice/b369718b3a904c2f845d135781120048
a = [int(i) for i in range(0, 20,2)]
for t in a:
print(t)
相关推荐