View Pit Stop page for race #3 by subarno — Ghost race
View profile for Subarno (subarno)
Official speed | 52.38 wpm (35.28 seconds elapsed during race) |
---|---|
Race Start | May 24, 2023 5:36:21pm UTC |
Race Finish | May 24, 2023 5:36:56pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 18.33 |
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") |