View Pit Stop page for race #3 by dinoh_sandys — Ghost race
View profile for ACC [99 - 100] (dinoh_sandys)
Official speed | 49.46 wpm (37.36 seconds elapsed during race) |
---|---|
Race Start | April 19, 2021 7:36:30am UTC |
Race Finish | April 19, 2021 7:37:07am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 17.31 |
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") |