Creation
This commit is contained in:
13
encode_By_file.py
Normal file
13
encode_By_file.py
Normal 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)
|
||||
Reference in New Issue
Block a user