View Pit Stop page for race #309 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 71.01 wpm (26.02 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 (2 of 4) |
Opponents |
1. arc_sec (90.88 wpm) 3. lesirh (70.89 wpm) |
Accuracy | 93.0% |
Points | 24.85 |
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") |