View Pit Stop page for race #2 by weshente — Ghost race
View profile for papajesus (weshente)
Official speed | 33.63 wpm (54.95 seconds elapsed during race) |
---|---|
Race Start | July 11, 2023 2:19:33pm UTC |
Race Finish | July 11, 2023 2:20:28pm UTC |
Outcome | Win (1 of 11) |
Opponents |
2. dennis123123 (32.67 wpm) |
Accuracy | 94.0% |
Points | 11.77 |
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") |