View Pit Stop page for race #105 by knight_oikos — Ghost race
View profile for Knight_Oikos (knight_oikos)
Official speed | 87.69 wpm (21.07 seconds elapsed during race) |
---|---|
Race Start | April 16, 2022 7:25:49am UTC |
Race Finish | April 16, 2022 7:26:10am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 30.69 |
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") |