View Pit Stop page for race #2 by textosnovos — Ghost race
View profile for Be or not be? It's the question... (textosnovos)
Official speed | 42.82 wpm (43.16 seconds elapsed during race) |
---|---|
Race Start | October 16, 2017 1:56:14am UTC |
Race Finish | October 16, 2017 1:56:57am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 14.99 |
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") |