View Pit Stop page for race #1 by integritytester — Ghost race
View profile for Carter (integritytester)
Official speed | 26.64 wpm (69.37 seconds elapsed during race) |
---|---|
Race Start | September 22, 2017 10:32:19pm UTC |
Race Finish | September 22, 2017 10:33:29pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 9.32 |
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") |