View Pit Stop page for race #1 by issa_ — Ghost race
Official speed | 57.81 wpm (31.97 seconds elapsed during race) |
---|---|
Race Start | August 7, 2023 8:46:40pm UTC |
Race Finish | August 7, 2023 8:47:12pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 94.0% |
Points | 20.23 |
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") |