View Pit Stop page for race #13 by priscilacervantes23 — Ghost race
View profile for priscila (priscilacervantes23)
Official speed | 23.39 wpm (79.01 seconds elapsed during race) |
---|---|
Race Start | May 24, 2025 2:15:40pm UTC |
Race Finish | May 24, 2025 2:16:59pm UTC |
Outcome | No win (9 of 16) |
Opponents |
2. jhosmarmamani (36.42 wpm) 3. fanor (31.65 wpm) 5. noelelias (27.79 wpm) |
Accuracy | 91.0% |
Points | 8.18 |
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") |