View Pit Stop page for race #21 by mohit_bhawnani — Ghost race
View profile for mohit bhawnani (mohit_bhawnani)
Official speed | 31.34 wpm (58.97 seconds elapsed during race) |
---|---|
Race Start | January 23, 2025 2:15:47pm UTC |
Race Finish | January 23, 2025 2:16:46pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 10.97 |
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") |