Python 练习: 打印0到99小于50或大于70的数字时间:2022-01-26 23:49:02 for i in range(100): if i < 50 or i > 70: print(i) 注意: range(100) 表示 0 到 99 个数字