python中的连续字母

时间:2017-09-01 11:32:18

标签: python string keyboard qwerty

我想在输入的字符串中找到连续的字母:

如果一个字符串包含三个基于英国QWERTY键盘布局的连续字母,那么每个三个字符串的变量将给出5个点。

e.g。 asdFG将包含三个连续集。大小写无所谓。

你能不能帮忙,因为我不知道从哪里开始呢?

2 个答案:

答案 0 :(得分:1)

最简单的方法是先生成所有可能的三元组:

lines = ["`1234567890-=", "qwertyuiop[]", "asdfghjkl;'\\", "<zxcvbnm,./"]
triples = []
for line in lines:
    for i in range(len(line)-2):
        triples.append(line[i:i+3])

如果您只想要字符而不是数字和括号等,请用

替换上面的lines
lines = ["qwertyuiop", "asdfghjkl", "zxcvbnm"]

现在我们已经拥有了所有三元组,您可以使用count查看三元组在输入字符串中出现的次数。

input_string = input().strip().lower()
score = 0
for triple in triples:
    number_of_occurrences = input_string.count(triple)
    score += 5 * number_of_occurrences
print(score)
巴姆,你去吧。它的作用是计算每个三元组在字符串中出现的次数,以便知道添加5个点的次数。我们使用str.lower()将所有字​​符转换为小写,因为正如您所说,大小写并不重要。

如果一个字符串包含某个三元组一次或三次是相同的,那么你可以这样做:

input_string = input().strip().lower()
score = 0
for triple in triples:
    if triple in input_string:
        score += 5
print(score)

答案 1 :(得分:-1)

qwerty = 'qwertyuiopasdfghjklzxcvbnm'

inp = 'ASdfqazfghZZxc'
inp_lower = inp.lower()

points = 0

for idx in range(0, len(inp_lower) - 2):
    test_seq = inp_lower[idx:idx + 3]
    if test_seq in qwerty:
        points += 5
        print(test_seq, '->', points)
    else:
        print(test_seq)