View Pit Stop page for race #5 by scarwpm — Ghost race
View profile for Innominate (scarwpm)
| Official speed | 38.75 wpm (47.69 seconds elapsed during race) |
|---|---|
| Race Start | December 25, 2021 1:05:34pm UTC |
| Race Finish | December 25, 2021 1:06:22pm UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. gospell (54.35 wpm) |
| Accuracy | 94.0% |
| Points | 13.56 |
| 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") |