View Pit Stop page for race #5 by raysrlu — Ghost race
View profile for Ray (raysrlu)
Official speed | 34.63 wpm (53.36 seconds elapsed during race) |
---|---|
Race Start | August 15, 2017 8:10:21am UTC |
Race Finish | August 15, 2017 8:11:14am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 12.12 |
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") |