python使用for循环输出1到100的奇数

如题所述

第1个回答  2020-09-27
[print(i) for i in range(1,100) if i%2!=0]
相似回答