View Pit Stop page for race #1 by styrofoam — Ghost race
View profile for police (styrofoam)
Official speed | 75.66 wpm (24.43 seconds elapsed during race) |
---|---|
Race Start | October 3, 2018 4:59:12pm UTC |
Race Finish | October 3, 2018 4:59:36pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 26.48 |
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") |