View Pit Stop page for race #2 by rajat_saini — Ghost race
View profile for Jarvis (rajat_saini)
Official speed | 26.41 wpm (69.97 seconds elapsed during race) |
---|---|
Race Start | July 19, 2023 10:50:08am UTC |
Race Finish | July 19, 2023 10:51:18am UTC |
Outcome | Win (1 of 3) |
Accuracy | 89.0% |
Points | 9.25 |
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") |