View Pit Stop page for race #54 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 78.61 wpm (23.51 seconds elapsed during race) |
---|---|
Race Start | July 22, 2019 12:12:30am UTC |
Race Finish | July 22, 2019 12:12:53am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 27.51 |
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") |