View Pit Stop page for race #3 by ruanp — Ghost race
Official speed | 51.72 wpm (35.73 seconds elapsed during race) |
---|---|
Race Start | May 18, 2022 9:24:53am UTC |
Race Finish | May 18, 2022 9:25:29am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 18.10 |
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") |