25 range打印100到0的连续整数

使用range打印100,99,98,。。。0
for i in range(100,-1,-1):
print(i)
原文地址:https://www.cnblogs.com/wssaried/p/9900492.html