Python 里的for loop 的运行情况 10
deftwo_length_run(x):#aversionwithforloopoverindices'''(list)->boolReturnsTrueifthere...
def two_length_run(x): # a version with for loop over indices
'''(list)-> bool
Returns True if there is a run of lenght at least 2
in the list of numbers x and False otherwise.
Precondition: x is a list of numbers
'''
for i in range(len(x)-1):
if x[i]== x[i+1]:
return True
return False
对于这个函数,这个 if 的判断条件是怎么运行的?
是对于每一个i=0,1,2,3.....一个一个判断吗?
这样是对所有编程语言适用吗?
谢谢了 展开
'''(list)-> bool
Returns True if there is a run of lenght at least 2
in the list of numbers x and False otherwise.
Precondition: x is a list of numbers
'''
for i in range(len(x)-1):
if x[i]== x[i+1]:
return True
return False
对于这个函数,这个 if 的判断条件是怎么运行的?
是对于每一个i=0,1,2,3.....一个一个判断吗?
这样是对所有编程语言适用吗?
谢谢了 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询