View Pit Stop page for race #3 by yuhang0722 — Ghost race
View profile for Yuhang (yuhang0722)
Official speed | 90.03 wpm (20.53 seconds elapsed during race) |
---|---|
Race Start | July 21, 2022 3:45:39am UTC |
Race Finish | July 21, 2022 3:45:59am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 31.51 |
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") |