View Pit Stop page for race #27 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 58.96 wpm (31.34 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 8:11:42pm UTC |
Race Finish | December 7, 2020 8:12:13pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 20.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") |