View Pit Stop page for race #7 by i_s_h_a_n — Ghost race
View profile for I (i_s_h_a_n)
| Official speed | 50.22 wpm (36.80 seconds elapsed during race) |
|---|---|
| Race Start | May 30, 2023 7:24:04pm UTC |
| Race Finish | May 30, 2023 7:24:41pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 17.58 |
| 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") |