View Pit Stop page for race #3 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 47.50 wpm (38.91 seconds elapsed during race) |
---|---|
Race Start | November 1, 2018 3:45:01pm UTC |
Race Finish | November 1, 2018 3:45:40pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (66.61 wpm) |
Accuracy | 95.0% |
Points | 16.63 |
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") |