View Pit Stop page for race #5 by anshkool — Ghost race
View profile for anshul (anshkool)
Official speed | 30.52 wpm (60.55 seconds elapsed during race) |
---|---|
Race Start | August 17, 2022 6:57:36am UTC |
Race Finish | August 17, 2022 6:58:37am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 10.68 |
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") |