View Pit Stop page for race #11 by timjeffery44 — Ghost race
View profile for (timjeffery44)
Official speed | 43.10 wpm (42.88 seconds elapsed during race) |
---|---|
Race Start | May 3, 2019 3:34:57am UTC |
Race Finish | May 3, 2019 3:35:40am UTC |
Outcome | No win (1 of 1) |
Accuracy | 92.0% |
Points | 15.09 |
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") |