@@ -0,0 +1 @@
output.txt
Шифрование текста со сдвигом по ASCII
qwertyuiop
@@ -0,0 +1,7 @@
with open("data.txt", "r", encoding="utf-8") as file:
text = file.read()
shifted_text = "".join(chr(ord(c) + 1) for c in text)
with open("output.txt", "w", encoding="utf-8") as file:
file.write(shifted_text)
The note is not visible to the blocked user.