View Pit Stop page for race #8 by gdhameeja — Ghost race
View profile for Gaurav (gdhameeja)
Official speed | 66.72 wpm (27.70 seconds elapsed during race) |
---|---|
Race Start | May 15, 2022 8:21:05pm UTC |
Race Finish | May 15, 2022 8:21:33pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 100.0% |
Points | 23.35 |
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") |