• 2022-05-29
    有一个词正好是三个重叠字母,而且据我所知这个词可能是唯一一个这样的词。在单词表中找到这个词
  • # 检验单词是否是三重叠字母def is_triple_double(word): i = 0 count = 0 while i < len(word)-1: if word[i] == word[i+1]: count = count + 1 if count == 3: return True i = i + 2 else: i = i + 1 - 2*count count = 0 return False# 遍历文本查找三重叠字母def find_triple_double(): fin = open('words.txt') for line in fin: word = line.strip() if is_triple_double(word): print(word)[/i]

    内容

    • 0

      多义词是指一个有____个义项,且义项之间____的词。

    • 1

      “提起个家”中哪个词是衬词?

    • 2

      16.词中一个辅音算一个音节。( )

    • 3

      维吾尔语&#91;tynyɡyn&#93;(昨天)这个 词 有( )。 A: 1 个 音节; B: 2 个 音节; C: 3 个 音节; D: 4 个 音节。

    • 4

      陕北民歌《三十里铺》中“提起个家”中哪个词是衬词? A: 提 B: 起 C: 个 D: 家