View Pit Stop page for race #30 by ahkiera — Ghost race
View profile for ⛓Unchained World⛓ (ahkiera)
Official speed | 55.32 wpm (33.41 seconds elapsed during race) |
---|---|
Race Start | January 15, 2022 4:15:29pm UTC |
Race Finish | January 15, 2022 4:16:02pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. jasimk (42.16 wpm) |
Accuracy | 93.0% |
Points | 19.36 |
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") |