View Pit Stop page for race #19 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 67.53 wpm (27.37 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 7:51:40pm UTC |
Race Finish | December 7, 2020 7:52:07pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 99.0% |
Points | 23.64 |
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") |