View Pit Stop page for race #30 by stop__ — Ghost race
View profile for Stop (stop__)
Official speed | 36.95 wpm (50.01 seconds elapsed during race) |
---|---|
Race Start | April 16, 2023 9:55:16am UTC |
Race Finish | April 16, 2023 9:56:06am UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 12.93 |
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") |