https://github.com/annotation/text-fabric
Raw File
Tip revision: 426b1569c963b98a17d5bd8e7dce7fd9f5195a76 authored by Dirk Roorda on 20 February 2020, 21:31:39 UTC
open statements now with encoding=utf8
Tip revision: 426b156
srun.py
from subprocess import run

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