View Pit Stop page for race #13 by nabineo — Ghost race
View profile for Nabin (nabineo)
Official speed | 27.42 wpm (67.40 seconds elapsed during race) |
---|---|
Race Start | March 23, 2020 11:49:43am UTC |
Race Finish | March 23, 2020 11:50:51am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 9.60 |
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") |