View Pit Stop page for race #19 by aeheffington — Ghost race
View profile for Abby (aeheffington)
Official speed | 60.73 wpm (30.43 seconds elapsed during race) |
---|---|
Race Start | February 10, 2023 6:34:44pm UTC |
Race Finish | February 10, 2023 6:35:14pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 98.0% |
Points | 21.26 |
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") |