View Pit Stop page for race #39 by teslateslatesla — Ghost race
View profile for sk (teslateslatesla)
Official speed | 47.58 wpm (38.84 seconds elapsed during race) |
---|---|
Race Start | September 9, 2021 5:28:17am UTC |
Race Finish | September 9, 2021 5:28:56am UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 16.65 |
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") |