View Pit Stop page for race #2 by drag3nz — Ghost race
View profile for Drag3nz (drag3nz)
Official speed | 31.05 wpm (59.52 seconds elapsed during race) |
---|---|
Race Start | January 30, 2018 11:18:56am UTC |
Race Finish | January 30, 2018 11:19:55am UTC |
Outcome | Win (1 of 3) |
Accuracy | 90.0% |
Points | 10.87 |
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") |