请修改一下下面的python代码 使之调用interval(10)时,输出[0,1,2,3,4,5,6,7,8,9]
definterval(start,stop=None,step=1):'Imitatesrange()forstep>0'ifstopisNone:#如果没有为stop...
def interval(start,stop=None,step=1):
'Imitates range() for step > 0'
if stop is None: #如果没有为stop提供值。。。。
start,stop=0,start #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result 展开
'Imitates range() for step > 0'
if stop is None: #如果没有为stop提供值。。。。
start,stop=0,start #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result 展开
展开全部
def interval(start,stop=None,step=1):
'Imitates range() for step > 0'
if stop is None: #如果没有为stop提供值。。。。
start,stop=0,start #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result
'Imitates range() for step > 0'
if stop is None: #如果没有为stop提供值。。。。
start,stop=0,start #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result
展开全部
def interval(stop,start=None,step=1):
'Imitates range() for step > 0'
if start is None: #如果没有为stop提供值。。。。
start=0 #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result
print(interval(10))
改了,我也运行过了....OK..请验收
'Imitates range() for step > 0'
if start is None: #如果没有为stop提供值。。。。
start=0 #指定参数
result=[]
i=start #计算start索引
while i<stop: #直到计算到stop的索引
result.append(i) #将索引添加到result内。。。。
i+=step #用step(>0)增加索引i。。。。
return result
print(interval(10))
改了,我也运行过了....OK..请验收
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询