View Pit Stop page for race #1 by ioie98 — Ghost race
View profile for Albertus (ioie98)
Official speed | 75.52 wpm (24.47 seconds elapsed during race) |
---|---|
Race Start | October 20, 2015 2:39:34pm UTC |
Race Finish | October 20, 2015 2:39:58pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. sandra_gun (29.63 wpm) |
Accuracy | 95.0% |
Points | 0.00 |
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") |