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