View Pit Stop page for race #82 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 86.87 wpm (21.27 seconds elapsed during race) |
---|---|
Race Start | July 22, 2019 6:23:24pm UTC |
Race Finish | July 22, 2019 6:23:45pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 30.40 |
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") |