https://github.com/annotation/text-fabric
Raw File
Tip revision: 42c9c10c6bb5c38b140df3f76927ceb73d49338a authored by Dirk Roorda on 24 April 2023, 18:29:48 UTC
small changes, better operation of addnlp
Tip revision: 42c9c10
srun.py
from subprocess import run

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