View Pit Stop page for race #442 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 101.96 wpm (18.12 seconds elapsed during race) |
---|---|
Race Start | October 12, 2019 6:19:44pm UTC |
Race Finish | October 12, 2019 6:20:02pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 35.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") |