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:
aryan1165 2023-10-04 09:04:55 +05:30 committed by GitHub
parent 8c23cc5117
commit 700df39ad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 600 additions and 600 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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]: ")