python 提取元音的随机测试代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 提取元音的随机测试代码相关的知识,希望对你有一定的参考价值。

__author__ = 'Roy'

def extract_vowels():
    letters = 'abcdefghijklmnopqrstuvwxyz'
    pos = dict(zip(xrange(1, 27), letters))
    print pos
    alphabet = [chr(i) for i in xrange(97, 123)]
    print alphabet
    # generate a list of vowels
    vowels = map(lambda x: chr(x), reduce(lambda acc, i: acc + [acc[-1] + i], (4, 4, 6, 6, 4), [97]))
    print vowels
    codepoints = reduce(lambda acc, i: acc + [acc[-1] + i], (4, 4, 6, 6, 4), [97])
    print codepoints
    consolants = [i for i in alphabet if i not in vowels]
    print consolants
    print pos
    vowlz = map(lambda x: pos[x], reduce(lambda acc, i: acc + [acc[-1] + i], (4, 4, 6, 6, 4), [1]))
    print vowlz
    vowels1 = lambda step, start: map(lambda x: chr(x),
                                      reduce(lambda acc, i: acc + [acc[-1] + i], [4, 4, 6, 6, step], [start]))
    vowels1 = lambda step, start: map(lambda x: chr(x),
                                      reduce(lambda acc, i: acc + [acc[-1] + i], [4, 4, 6, 6, step], [start]))
    vowels1(step=4, start=65)
    print vowels


if __name__ == '__main__':
    extract_vowels()

以上是关于python 提取元音的随机测试代码的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 345. 反转字符串中的元音字母 By Python

如何在python中提取随机森林的决策规则

python 随机提取zipfile内容

使用python从列表中随机提取x项

LeetCode 1716. 计算力扣银行的钱 / 382. 链表随机节点(蓄水池抽样) / 1220. 统计元音字母序列的数目(动规,矩阵快速幂)

华为OD机试真题 Python 实现最长的指定瑕疵度的元音子串