View Pit Stop page for race #7 by alaire05 — Ghost race
View profile for Alaire (alaire05)
Official speed | 30.05 wpm (61.50 seconds elapsed during race) |
---|---|
Race Start | June 25, 2023 12:31:07pm UTC |
Race Finish | June 25, 2023 12:32:08pm UTC |
Outcome | No win (2 of 4) |
Accuracy | 96.0% |
Points | 10.52 |
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") |