View Pit Stop page for race #4 by davidcaron — Ghost race
View profile for David (davidcaron)
Official speed | 52.09 wpm (35.48 seconds elapsed during race) |
---|---|
Race Start | November 2, 2022 7:48:36pm UTC |
Race Finish | November 2, 2022 7:49:12pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 18.23 |
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") |