View Pit Stop page for race #16 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
Official speed | 60.72 wpm (30.43 seconds elapsed during race) |
---|---|
Race Start | October 15, 2019 9:36:42am UTC |
Race Finish | October 15, 2019 9:37:13am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 21.25 |
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") |