View Pit Stop page for race #5 by mat_o — Ghost race
View profile for mat O (mat_o)
Official speed | 39.23 wpm (47.11 seconds elapsed during race) |
---|---|
Race Start | January 30, 2023 6:47:46am UTC |
Race Finish | January 30, 2023 6:48:33am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 13.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") |