MCPcopy Create free account
hub / github.com/subbarayudu-j/TheAlgorithms-Python / main

Function main

ciphers/brute_force_caesar_cipher.py:46–49  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

44 print("Decryption using Key #%s: %s" % (key, translated))
45
46def main():
47 message = input("Encrypted message: ")
48 message = message.upper()
49 decrypt(message)
50
51if __name__ == '__main__':
52 import doctest

Callers 1

Calls 1

decryptFunction · 0.70

Tested by

no test coverage detected