6 lines
95 B
Batchfile
6 lines
95 B
Batchfile
@echo off
|
|
set SCRIPT_DIR=%~dp0
|
|
pushd "%SCRIPT_DIR%"
|
|
start "" /B pythonw "tutorial.py"
|
|
popd
|
|
exit |