View Pit Stop page for race #1 by kush1106 — Ghost race
View profile for Kush Jadav (kush1106)
Official speed | 25.76 wpm (71.74 seconds elapsed during race) |
---|---|
Race Start | May 31, 2023 10:22:12am UTC |
Race Finish | May 31, 2023 10:23:24am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 9.01 |
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") |