View Pit Stop page for race #37 by timjeffery44 — Ghost race
View profile for (timjeffery44)
Official speed | 52.71 wpm (35.06 seconds elapsed during race) |
---|---|
Race Start | May 10, 2019 3:29:14am UTC |
Race Finish | May 10, 2019 3:29:49am UTC |
Outcome | No win (1 of 1) |
Accuracy | 93.0% |
Points | 18.45 |
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") |