Upload ej03

This commit is contained in:
Dennis Eckerskorn 2024-10-03 19:20:20 +02:00
parent 91cd0e5d17
commit d8ef1afd8c
1 changed files with 7 additions and 0 deletions

7
ej03.py Normal file
View File

@ -0,0 +1,7 @@
import subprocess
try:
subprocess.run(['Notepad.exe',])
subprocess.run(['c:/windows/notepad.exe',])
subprocess.run(['Notepad.exe','texto.txt'])
except subprocess.CalledProcessError as e:
print(e.output)