View Pit Stop page for race #11 by yuhang0722 — Ghost race
View profile for Yuhang (yuhang0722)
Official speed | 72.41 wpm (25.52 seconds elapsed during race) |
---|---|
Race Start | October 22, 2022 1:43:30pm UTC |
Race Finish | October 22, 2022 1:43:55pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 25.34 |
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") |