python-005(1-100奇数和偶数)
2021-01-25 07:16
标签:python lse span col 输出 偶数 += int 奇数 python-005(1-100奇数和偶数) 标签:python lse span col 输出 偶数 += int 奇数 原文地址:https://www.cnblogs.com/bigdata-6/p/12862219.html# 输出 1-100 的奇数
start = 1
while start :
temp = start % 2
if temp == 1:
print(start)
else:
pass
start += 1
# 输出1-100 偶数
start = 1
while start :
temp = start % 2
if temp == 1:
# print(start)
pass
else:
# pass
print(start)
start += 1
上一篇:python 面向对象专题(五):私有成员、类方法、静态方法、属性、isinstance/issubclass
下一篇:spring事物(一),@EnableTransactionManagement @Transactional 启动解析
文章标题:python-005(1-100奇数和偶数)
文章链接:http://soscw.com/index.php/essay/46699.html