View Pit Stop page for race #2 by t0khyo — Ghost race
View profile for Abdelrahman Mohamed (t0khyo)
Official speed | 20.03 wpm (92.26 seconds elapsed during race) |
---|---|
Race Start | June 4, 2023 2:35:24pm UTC |
Race Finish | June 4, 2023 2:36:56pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 92.0% |
Points | 7.01 |
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") |