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