View Pit Stop page for race #7 by lauta70 — Ghost race
View profile for dvorak :) (lauta70)
Official speed | 70.43 wpm (26.24 seconds elapsed during race) |
---|---|
Race Start | January 9, 2023 7:28:33pm UTC |
Race Finish | January 9, 2023 7:28:59pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 24.65 |
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") |