View Pit Stop page for race #34 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
Official speed | 76.06 wpm (24.30 seconds elapsed during race) |
---|---|
Race Start | October 18, 2019 5:51:48am UTC |
Race Finish | October 18, 2019 5:52:13am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 26.62 |
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") |