View Pit Stop page for race #3 by stlsixers — Ghost race
View profile for damn it matt (stlsixers)
Official speed | 52.42 wpm (35.25 seconds elapsed during race) |
---|---|
Race Start | August 31, 2017 8:20:48am UTC |
Race Finish | August 31, 2017 8:21:23am UTC |
Outcome | No win (6 of 10) |
Opponents |
1. rstacruz (85.04 wpm) 2. thurginesis (59.77 wpm) 5. akosipc (53.99 wpm) 9. xerxesregulus (29.14 wpm) |
Accuracy | 93.0% |
Points | 18.35 |
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") |