https://github.com/annotation/text-fabric
Raw File
Tip revision: d665a33be5092295250d7c87290c8ce17c1a81e7 authored by Dirk Roorda on 08 May 2023, 09:14:44 UTC
after numpy experiment
Tip revision: d665a33
srun.py
from subprocess import run

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