0
def extract_names(filename):
  """
  Given a file name for baby.html, returns a list starting with the year string
  followed by the name-rank strings in alphabetical order.
  ['2006', 'Aaliyah 91', Aaron 57', 'Abagail 895', ' ...]
  """
  # +++your code here+++
  f = open(filename,'rU')
  for line in f.readlines():
      match = re.search(r'(\d\d\d\d)(</h2)',line)
      if match:
          year = match.group(1)
          print line
          print year
       else:
            match = re.search(r'<td>(\d+)</td><td)(\w+)</td><td>(\w+)</td)',line)
            if match:
                rank = match.group(1)
                boyn = match.group(2)
                girln = match.group(3)
                print rank, boyn, girln
                print year


  f.close()
  return

收到以下错误,

  ./babynames.py baby2008.html
  File "./babynames.py", line 51
    else:
        ^
IndentationError: unindent does not match any outer indentation level
4

2 回答 2

1

只需在您之前删除一个额外的空格字符else:并确保两者(if和对应else的)具有完全相同的缩进

if match:
   #...
 else:    # This has only ONE EXTRA 'SPACE' at start!
   #...
于 2018-02-24T18:16:55.543 回答
0

您的 else 语句中的缩进已关闭。尝试这个:

def extract_names(filename):
  """
  Given a file name for baby.html, returns a list starting with the year string
  followed by the name-rank strings in alphabetical order.
  ['2006', 'Aaliyah 91', Aaron 57', 'Abagail 895', ' ...]
  """
  # +++your code here+++
  f = open(filename,'rU')
  for line in f.readlines():
      match = re.search(r'(\d\d\d\d)(</h2)',line)
      if match:
          year = match.group(1)
          print line
          print year
      else:
          match = re.search(r'<td>(\d+)</td><td)(\w+)</td><td>(\w+)</td)',line)
          if match:
              rank = match.group(1)
              boyn = match.group(2)
              girln = match.group(3)
              print rank, boyn, girln
              print year


  f.close()
  return
于 2012-10-06T17:54:00.823 回答