mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Fixed file name in transposition_cipher_encrypt_decrypt_file.py. Fixing bug file not found. (#9426)
* Fixed file name in trnasposition_cipher_encrypt_decrypt_file.py * Removed Output.txt * Removed Output.txt * Fixed build errors
This commit is contained in:
parent
8c23cc5117
commit
700df39ad4
File diff suppressed because it is too large
Load Diff
|
@ -6,8 +6,8 @@ from . import transposition_cipher as trans_cipher
|
|||
|
||||
|
||||
def main() -> None:
|
||||
input_file = "Prehistoric Men.txt"
|
||||
output_file = "Output.txt"
|
||||
input_file = "./prehistoric_men.txt"
|
||||
output_file = "./Output.txt"
|
||||
key = int(input("Enter key: "))
|
||||
mode = input("Encrypt/Decrypt [e/d]: ")
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user