View Pit Stop page for race #5 by chintan357 — Ghost race
View profile for CHINTAN (chintan357)
Official speed | 86.18 wpm (21.44 seconds elapsed during race) |
---|---|
Race Start | June 8, 2022 6:04:39am UTC |
Race Finish | June 8, 2022 6:05:01am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 30.16 |
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") |