for i in range(1,101):
if i % 2 == 1:
print(i)
python 打印1-100所有的奇数
最新推荐文章于 2025-02-28 11:43:53 发布
for i in range(1,101):
if i % 2 == 1:
print(i)