View Pit Stop page for race #27 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 23.50 wpm (78.64 seconds elapsed during race) |
---|---|
Race Start | May 16, 2019 2:18:04pm UTC |
Race Finish | May 16, 2019 2:19:22pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 8.22 |
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") |