View Pit Stop page for race #18 by amit__123 — Ghost race
View profile for Amit (amit__123)
Official speed | 35.61 wpm (51.90 seconds elapsed during race) |
---|---|
Race Start | September 18, 2021 11:29:39am UTC |
Race Finish | September 18, 2021 11:30:31am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 12.47 |
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") |