View Pit Stop page for race #13 by wayrus — Ghost race
View profile for Billy (wayrus)
Official speed | 68.93 wpm (26.81 seconds elapsed during race) |
---|---|
Race Start | February 9, 2023 5:56:19pm UTC |
Race Finish | February 9, 2023 5:56:45pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. aeheffington (59.01 wpm) |
Accuracy | 97.0% |
Points | 24.12 |
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") |