View Pit Stop page for race #23 by scraex — Ghost race
Official speed | 57.39 wpm (32.20 seconds elapsed during race) |
---|---|
Race Start | November 3, 2021 5:09:06pm UTC |
Race Finish | November 3, 2021 5:09:39pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. poem (68.11 wpm) |
Accuracy | 93.0% |
Points | 20.09 |
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") |