View Pit Stop page for race #23 by leonzalion — Ghost race
View profile for leon (leonzalion)
Official speed | 117.94 wpm (15.67 seconds elapsed during race) |
---|---|
Race Start | May 25, 2021 7:44:08pm UTC |
Race Finish | May 25, 2021 7:44:24pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 41.28 |
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") |