View Pit Stop page for race #2 by rustam687 — Ghost race
View profile for Rustam (rustam687)
Official speed | 53.33 wpm (34.65 seconds elapsed during race) |
---|---|
Race Start | July 4, 2021 8:49:33am UTC |
Race Finish | July 4, 2021 8:50:07am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. odort (31.48 wpm) |
Accuracy | 96.0% |
Points | 18.67 |
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") |