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