View Pit Stop page for race #8 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
Official speed | 63.81 wpm (28.96 seconds elapsed during race) |
---|---|
Race Start | October 15, 2019 9:21:23am UTC |
Race Finish | October 15, 2019 9:21:52am UTC |
Outcome | No win (1 of 1) |
Accuracy | 95.0% |
Points | 22.33 |
Text | #10002 (Length: 154 characters) import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py") |