【问题标题】:Errors in Python Pangram Checker on Exercism.ioExercism.io 上 Python Pangram Checker 中的错误
【发布时间】:2019-12-18 22:35:31
【问题描述】:

我正在尝试解决 Exercism.io 的 Python 轨道上的this 问题,并且通过了所有测试,除了混合大小写和标点符号的测试,只有小写、数字和下划线。有 10 个测试,我目前有四个不正确。这是我的代码。

def is_pangram(sentence):
alphabet = "abcdefghijklmnopqrstuvwxyz"
if alphabet in sentence:
    return True
else:
    return False

这里是测试代码:

class PangramTest(unittest.TestCase):
def test_empty_sentence(self):
    self.assertIs(is_pangram(""), False)

def test_perfect_lower_case(self):
    self.assertIs(is_pangram("abcdefghijklmnopqrstuvwxyz"), True)

def test_only_lower_case(self):
    self.assertIs(is_pangram("the quick brown fox jumps over the lazy dog"), True)

def test_missing_the_letter_x(self):
    self.assertIs(
        is_pangram("a quick movement of the enemy will jeopardize five gunboats"),
        False,
    )

def test_missing_the_letter_h(self):
    self.assertIs(is_pangram("five boxing wizards jump quickly at it"), False)

def test_with_underscores(self):
    self.assertIs(is_pangram("the_quick_brown_fox_jumps_over_the_lazy_dog"), True)

def test_with_numbers(self):
    self.assertIs(
        is_pangram("the 1 quick brown fox jumps over the 2 lazy dogs"), True
    )

def test_missing_letters_replaced_by_numbers(self):
    self.assertIs(is_pangram("7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog"), False)

def test_mixed_case_and_punctuation(self):
    self.assertIs(is_pangram('"Five quacking Zephyrs jolt my wax bed."'), True)

def test_case_insensitive(self):
    self.assertIs(is_pangram("the quick brown fox jumps over with lazy FX"), False)

我错过了什么?从概念上讲,我是否还没有理解我应该做进一步研究的任何方面?

【问题讨论】:

  • 请注意,您可以只使用return "abcdefghijklmnopqrstuvwxyz" in sentence,但这绝对不是正确的逻辑。尝试例如"abc" in "cab" 看看为什么这可能是个问题。
  • 我猜,你只通过了结果为False的测试?
  • 那个,加上"abcdefghijklmnopqrstuvwxyz" 测试。
  • "abc" in s 仅当字符串 abc 作为子字符串出现在 s 中时才会返回 true,即按照没有中间字符的确切顺序。因此,xabcy 将返回 true,但 xacbyaxbyc 等返回 false。
  • 这几乎可以肯定是重复的......

标签: python pangram


【解决方案1】:

这个:

alphabet = "abcdefghijklmnopqrstuvwxyz"
if alphabet in sentence:

正在检查整个字符串,即字符串abcdefghijklmnopqrstuvwxyz,是否在句子中。 检查该字符串的每个字母是否在句子中。

就目前而言,只有当被测试的字符串包含精确的序列abcdefghijklmnopqrstuvwxyz 时,您的程序才会返回 true。除了第二个之外,您的所有测试都不包含该字符串,但由于您的一些测试应该返回 false,因此那些测试通过了。

检查每个字母的方法看起来像这样(肯定有更好/更pythonic的方法,只是试图传达检查每个字母而不是检查整个大字符串的概念):

def is_pangram(sentence):
    alphabet = "abcdefghijklmnopqrstuvwxyz"

    for char in alphabet: 
        if char not in sentence.lower(): 
            return False

    return True

【讨论】:

猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2022-08-09
  • 1970-01-01
  • 1970-01-01
  • 2021-12-11
相关资源
最近更新 更多