View Pit Stop page for race #3 by itsdanerd — Ghost race
View profile for Devin (itsdanerd)
Official speed | 51.86 wpm (35.63 seconds elapsed during race) |
---|---|
Race Start | November 28, 2017 11:36:43pm UTC |
Race Finish | November 28, 2017 11:37:18pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 97.0% |
Points | 18.15 |
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") |