mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Improved readability (#1615)
* improved readability * further readability improvements * removed csv file and added f
This commit is contained in:
committed by
Christian Clauss
parent
938dd0bbb5
commit
9eb50cc223
@@ -117,4 +117,4 @@ if __name__ == "__main__":
|
||||
msg = "DEFEND THE EAST WALL OF THE CASTLE."
|
||||
encrypted = encryptMessage(msg, "EPSDUCVWYM.ZLKXNBTFGORIJHAQ")
|
||||
decrypted = decryptMessage(encrypted, "EPSDUCVWYM.ZLKXNBTFGORIJHAQ")
|
||||
print("Encrypted: {}\nDecrypted: {}".format(encrypted, decrypted))
|
||||
print(f"Encrypted: {encrypted}\nDecrypted: {decrypted}")
|
||||
|
||||
Reference in New Issue
Block a user