View Pit Stop page for race #5 by maruf1010 — Ghost race
View profile for maruf (maruf1010)
Official speed | 33.65 wpm (54.92 seconds elapsed during race) |
---|---|
Race Start | April 6, 2018 9:23:22am UTC |
Race Finish | April 6, 2018 9:24:17am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 11.78 |
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") |