View Pit Stop page for race #8 by kvbx — Ghost race
Official speed | 50.14 wpm (36.86 seconds elapsed during race) |
---|---|
Race Start | March 30, 2017 11:04:59am UTC |
Race Finish | March 30, 2017 11:05:36am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. mawa (51.56 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") |