Python输出1-100内的所有奇数、偶数 for loopA in range(101): if loopA % 2 == 1: print(loopA) //奇数 for loopA in r ...