View Pit Stop page for race #4 by thunderfro — Ghost race
View profile for Thunderfro (thunderfro)
Official speed | 58.74 wpm (31.46 seconds elapsed during race) |
---|---|
Race Start | June 26, 2017 11:19:03pm UTC |
Race Finish | June 26, 2017 11:19:35pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 0.00 |
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") |