View Pit Stop page for race #46 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 68.38 wpm (27.03 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 8:29:22pm UTC |
Race Finish | July 20, 2019 8:29:49pm UTC |
Outcome | No win (6 of 6) |
Opponents |
1. sidd_ (127.02 wpm) 2. mako640 (108.35 wpm) 3. keegant (81.43 wpm) 4. spondulix (73.39 wpm) 5. storm (69.91 wpm) |
Accuracy | 98.0% |
Points | 23.93 |
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") |