Python100-200以内能被3整除且个位为8的所有整数
该回答引用chatgpt:
for i in range(100, 201): if i % 3 == 0 and i % 10 == 8: print(i)
[i for i in range(108,200,30)]