View Pit Stop page for race #23 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 70.08 wpm (26.37 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 8:01:06pm UTC |
Race Finish | December 7, 2020 8:01:32pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 24.53 |
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") |