This commit is contained in:
Elghinnarisa
2022-08-01 20:39:41 +02:00
commit cccbd45f1b
7 changed files with 264 additions and 0 deletions

13
encode_By_file.py Normal file
View File

@@ -0,0 +1,13 @@
import subprocess
from tkinter import Y
with open ("input.txt" ,"r") as file:
lines = file.readlines()
lines = [line.rstrip() for line in lines]
lines = (line for line in lines if line)
print(lines)
for i in lines:
print(i)
subprocess.run(i)