for 循环递减
我想要一个像这样的 for 循环:
for counter in range(10,0):
print counter,
输出应该是 10 9 8 7 6 5 4 3 2 1
I want to have a for loop like so:
for counter in range(10,0):
print counter,
and the output should be 10 9 8 7 6 5 4 3 2 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
范围步长应为 -1
range step should be -1
查看
range
文档,您必须定义消极的一步:Check out the
range
documentation, you have to define a negative step:你需要给范围一个-1步长
You need to give the range a -1 step
range() 函数将包含第一个值并排除第二个值。
The range() function will include the first value and exclude the second.