https://github.com/annotation/text-fabric
Raw File
Tip revision: ad65814d22664ac4b2e416356f703edf2a798a37 authored by Dirk Roorda on 27 March 2019, 13:34:00 UTC
small fix in excel export
Tip revision: ad65814
srun.py
from subprocess import run

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