Add `.split

This commit is contained in:
Srivaishnavi Yaddanapudi 2024-10-29 17:21:43 +05:30 committed by GitHub
parent 2bef9b9cb3
commit 92d58b7109
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,13 +27,13 @@ def apply_rot13(s: str) -> str:
def main() -> None:
s0 = input("Enter message: ")
s0 = input("Enter message: ").strip()
s1 = apply_rot13(s0)
print("Encryption:", s1)
s2 = apply_rot13(s1)
print("Decryption: ", s2)
print("Decryption:", s2)
if __name__ == "__main__":