View Pit Stop page for race #1 by jsddfgh — Ghost race
View profile for jean (jsddfgh)
Official speed | 71.52 wpm (25.84 seconds elapsed during race) |
---|---|
Race Start | June 20, 2023 2:59:01pm UTC |
Race Finish | June 20, 2023 2:59:27pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 25.03 |
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") |