View Pit Stop page for race #226 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 90.65 wpm (20.39 seconds elapsed during race) |
---|---|
Race Start | July 25, 2019 12:15:20am UTC |
Race Finish | July 25, 2019 12:15:40am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 31.73 |
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") |