View Pit Stop page for race #55 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 79.02 wpm (23.39 seconds elapsed during race) |
---|---|
Race Start | July 22, 2019 12:13:32am UTC |
Race Finish | July 22, 2019 12:13:55am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 27.66 |
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") |