View Pit Stop page for race #9 by teslateslatesla — Ghost race
View profile for sk (teslateslatesla)
Official speed | 43.57 wpm (42.41 seconds elapsed during race) |
---|---|
Race Start | September 4, 2021 7:18:15am UTC |
Race Finish | September 4, 2021 7:18:58am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 15.25 |
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") |