This is a possible solution: from string import ascii_lowercase def rolling_cipher(s, n): idx = ascii_lowercase.index(s) new_idx = (idx + n) ...
確定! 回上一頁