https://github.com/annotation/text-fabric
Raw File
Tip revision: 97d16bad097ef9d5f369af3113f332aa5421b770 authored by Dirk Roorda on 09 July 2020, 14:34:30 UTC
explode function
Tip revision: 97d16ba
srun.py
from subprocess import run

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