View Pit Stop page for race #9 by andreaak00 — Ghost race
View profile for ANDREA (andreaak00)
Official speed | 84.93 wpm (21.76 seconds elapsed during race) |
---|---|
Race Start | October 22, 2017 2:21:33pm UTC |
Race Finish | October 22, 2017 2:21:55pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 97.0% |
Points | 29.73 |
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") |