我正在编写一个函数,该函数将以这种格式打印凯撒密码字典,其中的参数是我们要移动字母多少:
buildCoder(3)
{'A': 'D', 'C': 'F', 'B': 'E', 'E': 'H', 'D': 'G', 'G': 'J', 'F': 'I', 'I': 'L', 'H': 'K', 'K': 'N', 'J': 'M', 'M': 'P', 'L': 'O', 'O': 'R', 'N': 'Q', 'Q': 'T', 'P': 'S', 'S': 'V', 'R': 'U', 'U': 'X', 'T': 'W', 'W': 'Z', 'V': 'Y', 'Y': 'B', 'X': 'A', 'Z': 'C', 'a': 'd', 'c': 'f', 'b': 'e', 'e': 'h', 'd': 'g', 'g': 'j', 'f': 'i', 'i': 'l', 'h': 'k', 'k': 'n', 'j': 'm', 'm': 'p', 'l': 'o', 'o': 'r', 'n': 'q', 'q': 't', 'p': 's', 's': 'v', 'r': 'u', 'u': 'x', 't': 'w', 'w': 'z', 'v': 'y', 'y': 'b', 'x': 'a', 'z': 'c'}
这是我的代码:
import string
def buildCoder(shift):
small = string.ascii_lowercase
capital = string.ascii_uppercase
mainDict = {}
for i in range(0, len(capital)):
mainDict[capital[i]] = capital[i+shift]
for i in range(0, len(small)):
mainDict[capital[i]] = capital[i+shift]
return mainDict
但是问题是,当它循环通过大写字母中的字母时,此变量的字符串索引超出范围。我该怎么解决?
答案 0 :(得分:3)
问题是,在某个时刻export class GuidedSearchComponent implements OnInit, AfterViewInit {
@ViewChild('verticalStepper') verticalStepper: MatStepper;
@ViewChild('horizontalStepper') horizontalStepper: MatStepper;
大于i + shift
或len(small)
,您需要使用modulo operator:
len(capital)
输出
import string
def build_coder(shift):
small = string.ascii_lowercase
capital = string.ascii_uppercase
main_dict = {}
for i in range(0, len(capital)):
main_dict[capital[i]] = capital[(i+shift) % len(capital)]
for i in range(0, len(small)):
main_dict[small[i]] = small[(i + shift) % len(small)]
return main_dict
result = build_coder(3)
print(result)