View Pit Stop page for race #36 by sidd_ — Ghost race
Official speed | 115.17 wpm (16.05 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 10:37:53pm UTC |
Race Finish | January 27, 2019 10:38:09pm UTC |
Outcome | Win (1 of 5) |
Opponents |
2. delirious (84.98 wpm) 3. poem (62.57 wpm) 4. styrofoam (61.16 wpm) 5. hellothen (51.80 wpm) |
Accuracy | 99.0% |
Points | 40.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") |