View Pit Stop page for race #15 by jasimk — Ghost race
Official speed | 41.97 wpm (44.03 seconds elapsed during race) |
---|---|
Race Start | February 17, 2022 2:55:02pm UTC |
Race Finish | February 17, 2022 2:55:46pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. scraex (48.55 wpm) 3. sura5 (36.08 wpm) |
Accuracy | 94.0% |
Points | 14.69 |
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") |