mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Change N
into lowercase
This commit is contained in:
parent
92d58b7109
commit
3a98cdab6e
|
@ -14,13 +14,13 @@ def apply_rot13(s: str) -> str:
|
|||
"""
|
||||
if not isinstance(s, str):
|
||||
return "The input must be a string. Please try again."
|
||||
N = 13
|
||||
n = 13
|
||||
out = ""
|
||||
for c in s:
|
||||
if "A" <= c <= "Z":
|
||||
out += chr(ord("A") + (ord(c) - ord("A") + N) % 26)
|
||||
out += chr(ord("A") + (ord(c) - ord("A") + n) % 26)
|
||||
elif "a" <= c <= "z":
|
||||
out += chr(ord("a") + (ord(c) - ord("a") + N) % 26)
|
||||
out += chr(ord("a") + (ord(c) - ord("a") + n) % 26)
|
||||
else:
|
||||
out += c
|
||||
return out
|
||||
|
|
Loading…
Reference in New Issue
Block a user