rot13

Rot13 function but the code can't translate if letter clue is over 122

Rot13 function but the code can't translate if letter clue is over 122 Question: The answers come one by one but if the value is over 122 then the following code doesn’t work. def rotate_word13(line, num): for x in line: a = ord(x) a = ord(x) + num print(a) if a >= 122: e = …

Total answers: 1