https://github.com/annotation/text-fabric
Raw File
Tip revision: bae3364b5104f3e2d920c3b97996267195ec613d authored by Dirk Roorda on 29 January 2019, 23:20:16 UTC
simpler conversion
Tip revision: bae3364
srun.py
from subprocess import run

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