View Pit Stop page for race #1 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 38.59 wpm (47.89 seconds elapsed during race) |
---|---|
Race Start | November 1, 2018 3:33:52pm UTC |
Race Finish | November 1, 2018 3:34:40pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (73.61 wpm) |
Accuracy | 93.0% |
Points | 13.51 |
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") |