View Pit Stop page for race #5 by mitchellwu076 — Ghost race
View profile for (mitchellwu076)
Official speed | 61.58 wpm (30.01 seconds elapsed during race) |
---|---|
Race Start | December 1, 2020 4:10:30pm UTC |
Race Finish | December 1, 2020 4:11:00pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 21.55 |
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") |