View Pit Stop page for race #15 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 59.12 wpm (31.26 seconds elapsed during race) |
---|---|
Race Start | December 5, 2020 1:21:28pm UTC |
Race Finish | December 5, 2020 1:21:59pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 20.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") |