View Pit Stop page for race #1 by rustam687 — Ghost race
View profile for Rustam (rustam687)
Official speed | 47.62 wpm (38.81 seconds elapsed during race) |
---|---|
Race Start | June 19, 2021 8:11:37am UTC |
Race Finish | June 19, 2021 8:12:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 16.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") |