View Pit Stop page for race #17 by jasimk — Ghost race
Official speed | 43.86 wpm (42.13 seconds elapsed during race) |
---|---|
Race Start | March 8, 2022 5:15:11pm UTC |
Race Finish | March 8, 2022 5:15:53pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 95.0% |
Points | 15.35 |
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") |