View Pit Stop page for race #23 by ajansen1318 — Ghost race
View profile for AJ (ajansen1318)
Official speed | 35.79 wpm (51.63 seconds elapsed during race) |
---|---|
Race Start | September 15, 2023 9:27:55pm UTC |
Race Finish | September 15, 2023 9:28:47pm UTC |
Outcome | No win (3 of 3) |
Opponents |
1. chrissypoopoo (73.66 wpm) |
Accuracy | 92.0% |
Points | 12.53 |
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") |