View Pit Stop page for race #2 by pavan_ — Ghost race
View profile for pavan (pavan_)
Official speed | 29.08 wpm (63.55 seconds elapsed during race) |
---|---|
Race Start | April 30, 2023 9:50:36am UTC |
Race Finish | April 30, 2023 9:51:40am UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 10.18 |
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") |