View Pit Stop page for race #7 by jjz03 — Ghost race
Official speed | 43.20 wpm (42.78 seconds elapsed during race) |
---|---|
Race Start | June 13, 2019 1:38:04pm UTC |
Race Finish | June 13, 2019 1:38:47pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 15.12 |
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") |