View Pit Stop page for race #38 by jhonny_ct — Ghost race
View profile for Jhonny Condori (jhonny_ct)
Official speed | 25.22 wpm (73.28 seconds elapsed during race) |
---|---|
Race Start | June 30, 2025 1:34:21am UTC |
Race Finish | June 30, 2025 1:35:35am UTC |
Outcome | No win (4 of 5) |
Opponents |
1. samiraarancibia123426 (33.68 wpm) 2. sharick_chungara (27.36 wpm) 3. nessa2 (26.19 wpm) |
Accuracy | 93.0% |
Points | 8.83 |
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") |