View Pit Stop page for race #14 by jasimk — Ghost race
Official speed | 42.16 wpm (43.83 seconds elapsed during race) |
---|---|
Race Start | January 15, 2022 4:15:29pm UTC |
Race Finish | January 15, 2022 4:16:12pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. ahkiera (55.32 wpm) |
Accuracy | 95.0% |
Points | 14.76 |
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") |