View Pit Stop page for race #2 by coder_onehundred — Ghost race
View profile for Coder100 (coder_onehundred)
Official speed | 88.45 wpm (20.89 seconds elapsed during race) |
---|---|
Race Start | June 23, 2023 1:58:09am UTC |
Race Finish | June 23, 2023 1:58:30am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 30.96 |
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") |