View Pit Stop page for race #6 by benjin7 — Ghost race
View profile for Benjin (benjin7)
Official speed | 45.25 wpm (40.84 seconds elapsed during race) |
---|---|
Race Start | August 9, 2023 11:14:35am UTC |
Race Finish | August 9, 2023 11:15:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 15.84 |
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") |