View Pit Stop page for race #2 by amit__123 — Ghost race
View profile for Amit (amit__123)
Official speed | 33.39 wpm (55.35 seconds elapsed during race) |
---|---|
Race Start | September 18, 2021 10:56:11am UTC |
Race Finish | September 18, 2021 10:57:06am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 11.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") |