View Pit Stop page for race #2 by veryvaughsome2 — Ghost race
View profile for veryvaughsome (veryvaughsome2)
Official speed | 26.51 wpm (69.71 seconds elapsed during race) |
---|---|
Race Start | July 3, 2023 6:04:27pm UTC |
Race Finish | July 3, 2023 6:05:37pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 9.28 |
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") |