View Pit Stop page for race #6 by gamblr — Ghost race
View profile for Gambler (gamblr)
Official speed | 36.66 wpm (50.41 seconds elapsed during race) |
---|---|
Race Start | June 11, 2023 4:28:30pm UTC |
Race Finish | June 11, 2023 4:29:20pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 12.83 |
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") |