View Pit Stop page for race #3 by octoboar — Ghost race
View profile for Andrey (octoboar)
Official speed | 38.08 wpm (48.53 seconds elapsed during race) |
---|---|
Race Start | November 20, 2020 5:39:02pm UTC |
Race Finish | November 20, 2020 5:39:51pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 13.33 |
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") |