首页 > 解决方案 > Python str.islower() 方法似乎在我的代码中不起作用?

问题描述

我正在通过 Project Gutenberg 网站分析 Macbeth 的文本,并尝试通过提及他们的名字来创建角色列表。我知道有一种方法可以用 nltk 做到这一点,但我现在正试图避免这种情况。我通过在文本中查找所有“Enter”实例来获取名称,然后尝试删除所有小写单词。这是我到目前为止的代码:

import requests

macbeth = requests.get('http://www.gutenberg.org/cache/epub/2264/pg2264.txt').text

macbeth = macbeth.split('.')

character_list = [sentence.split() for sentence in macbeth if 'Enter' in sentence]

for sublist in character_list:
    for string in sublist:
        if string.islower() == True:
            sublist.remove(string)

这是我在打印结果时得到的输出的摘录:

[['Enter', 'Witches'],
 ['Enter',
  'King,',
  'Malcome,',
  'Donalbaine,',
  'Lenox,',
  'attendants,',
  'a',
  'Captaine'],
 ['Enter', 'Rosse', 'Angus'],
 ['Enter', 'three', 'Witches'],
 ['Enter', 'Macbeth', 'Banquo'],
 ["Toth'", 'tune', 'words:', 'here?', 'Enter', 'Rosse', 'Angus']
 etc.

我很难理解为什么'attendants'、'a'、'three'、'tune'等没有从每个子列表中删除。我是否在我目前拥有的代码中遗漏了什么?

标签: pythonpython-requestslowercase

解决方案


您在一个 for 循环中从列表中删除一项,列表也已更改。所以在这个 for string in sublist中,字符串不会按照原始子列表的顺序循环。


推荐阅读