View Pit Stop page for race #2 by kevinyang07 — Ghost race
View profile for sus amog (kevinyang07)
Official speed | 63.46 wpm (29.12 seconds elapsed during race) |
---|---|
Race Start | July 15, 2023 10:51:12pm UTC |
Race Finish | July 15, 2023 10:51:41pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 22.21 |
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") |