View Pit Stop page for race #5 by badtyper122 — Ghost race
View profile for 😎 (badtyper122)
Official speed | 42.18 wpm (43.81 seconds elapsed during race) |
---|---|
Race Start | May 23, 2023 7:57:51pm UTC |
Race Finish | May 23, 2023 7:58:34pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 14.76 |
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") |