View Pit Stop page for race #1 by shaker_faker — Ghost race
View profile for Shaker (shaker_faker)
Official speed | 44.70 wpm (41.34 seconds elapsed during race) |
---|---|
Race Start | January 23, 2023 2:41:12pm UTC |
Race Finish | January 23, 2023 2:41:53pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 15.64 |
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") |