View Pit Stop page for race #67 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 24.87 wpm (74.31 seconds elapsed during race) |
---|---|
Race Start | May 17, 2019 1:06:24pm UTC |
Race Finish | May 17, 2019 1:07:38pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 8.70 |
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") |