View Pit Stop page for race #3 by krina521 — Ghost race
View profile for KK (krina521)
| Official speed | 36.26 wpm (50.97 seconds elapsed during race) |
|---|---|
| Race Start | May 26, 2023 10:48:53am UTC |
| Race Finish | May 26, 2023 10:49:44am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.0% |
| Points | 12.69 |
| 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") |