Revision cf868b310300e7e1baf30923afdfdb58367c2a42 authored by Dirk Roorda on 30 January 2021, 14:24:07 UTC, committed by Dirk Roorda on 30 January 2021, 14:24:07 UTC
1 parent 387719d
Raw File
srun.py
from subprocess import run

print('A')
run('python3 hello.py', shell=True)
print('B')
back to top