python 倒序循环实现办法
2021-04-23
新闻来源:网淘巴
围观:713
''
像delphi 有
for i:=10 to 1 do
begin
showmessage(i)
end;
VB倒序循环
Dim i As Long
For i = 10 To 1
MsgBox i
Next
c#倒序循环:[文]
for(int[章] i =10;i&g[来]t;0;i--[自])
{
Console.Write(i);
}
倒序循环,py[网]thon 怎用用for实[淘]现倒序循环呢,[巴]以下就是解决办[文]法:
for i in range(50, 0, -1):
print(i)
输出:50、4[章]9、48...[来]1
喜欢的给个赞
本文链接:https://www.wtao8.com/post/27.html 转载需授权!