View Pit Stop page for race #1 by nidalzabade — Ghost race
View profile for Nidal (nidalzabade)
Official speed | 23.14 wpm (79.86 seconds elapsed during race) |
---|---|
Race Start | June 29, 2023 6:24:15pm UTC |
Race Finish | June 29, 2023 6:25:35pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. alaasaleem (26.11 wpm) 3. halagholeh (21.78 wpm) |
Accuracy | 93.0% |
Points | 8.10 |
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") |