View Pit Stop page for race #9 by lesirh — Ghost race
View profile for LeSirH (lesirh)
Official speed | 70.89 wpm (26.07 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:23:22am UTC |
Race Finish | August 8, 2019 3:23:48am UTC |
Outcome | No win (3 of 4) |
Opponents |
1. arc_sec (90.88 wpm) 2. spondulix (71.01 wpm) |
Accuracy | 94.0% |
Points | 24.81 |
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") |