View Pit Stop page for race #114 by rollno14 — Ghost race
View profile for Free Palestine (rollno14)
Official speed | 61.73 wpm (29.94 seconds elapsed during race) |
---|---|
Race Start | July 17, 2021 7:12:02am UTC |
Race Finish | July 17, 2021 7:12:32am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 21.61 |
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") |