View Pit Stop page for race #19 by yuhang0722 — Ghost race
View profile for Yuhang (yuhang0722)
Official speed | 74.70 wpm (24.74 seconds elapsed during race) |
---|---|
Race Start | October 22, 2022 1:52:24pm UTC |
Race Finish | October 22, 2022 1:52:49pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 26.15 |
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") |