View Pit Stop page for race #1 by karg1142 — Ghost race
View profile for karg1142 (karg1142)
Official speed | 29.41 wpm (62.84 seconds elapsed during race) |
---|---|
Race Start | June 8, 2023 6:32:36am UTC |
Race Finish | June 8, 2023 6:33:39am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. sid__que (33.45 wpm) |
Accuracy | 95.0% |
Points | 10.29 |
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") |