一、 range(start,end,step)
二、代码
【code1】
for i in range(1,10,2): print("i=",i)
【result1】
i= 1 i= 3 i= 5 i= 7 i= 9
【code2】
for i in range(4): print("i=",i)
【result2】
i= 0 i= 1 i= 2 i= 3
标签:start body pytho pos color step 函数 bsp style
一、 range(start,end,step)
二、代码
【code1】
for i in range(1,10,2): print("i=",i)
【result1】
i= 1 i= 3 i= 5 i= 7 i= 9
【code2】
for i in range(4): print("i=",i)
【result2】
i= 0 i= 1 i= 2 i= 3
标签:start body pytho pos color step 函数 bsp style
原文地址:https://www.cnblogs.com/hezhiyao/p/8179053.html