4

我错误地编写了一个程序。

def changeByThirds(pic):
  w= getWidth (pic)
  h = getHeight(pic)

  newPic = makeEmptyPicture(w,h)
  for x in range (0,w):
    for y in range (0,h):
      pxl = getPixel(pic, x, y)

      if (y<h/3):
#some code

      if (y>(h*2/3)):
#some code

      else:
#some code

  return (newPic)

当我执行这个程序时,第一个 if 语句if (y<h/3):被忽略了,所以它就像第一个 if 根本不存在一样运行。

if (y>(h*2/3)):
#some code

      else:
#some code

我发现编写代码的正确方法是这样的:

def changeByThirds(pic):
  w= getWidth (pic)
  h = getHeight(pic)

  newPic = makeEmptyPicture(w,h)
  for x in range (0,w):
    for y in range (0,h):
      pxl = getPixel(pic, x, y)

      if (y<h/3):
#some code

      elif (y>(h*2/3)):
#some code

      else:
#some code

  return (newPic)

但是,我的问题是;

在第一个代码中 - 为什么它绕过第一个 if 语句?

4

2 回答 2

5

在第一个程序中,它second if覆盖了 中所做的事情first if,它没有被“绕过”。这就是为什么当您更改为elif.

于 2013-07-07T11:20:11.327 回答
5

在第一个示例if中,即使第一个if是,也将检查两个条件False

所以第一个实际上看起来像这样:


  if (y<h/3):
     #some code

  if (y>(h*2/3)):
      #some code
  else:
      #some code

例子:

>>> x = 2

if x == 2:
     x += 1      
if x == 3:       #due to the modification done by previous if, this condition
                 #also becomes True, and you modify x again 
     x += 1
else:    
     x+=100
>>> x            
4

但是在一个if-elif-else块中,如果其中任何一个是,True那么代码就会中断,并且不会检查下一个条件。


  if (y<h/3):
      #some code
  elif (y>(h*2/3)):
      #some code
  else:
     #some code

例子:

>>> x = 2
if x == 2:
    x += 1
elif x == 3:    
    x += 1
else:    
    x+=100
...     
>>> x             # only the first-if changed the value of x, rest of them
                  # were not checked
3
于 2013-07-07T11:24:10.173 回答