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