View Pit Stop page for race #6 by suckyourmum2021 — Ghost race
View profile for jack (suckyourmum2021)
Official speed | 45.62 wpm (40.51 seconds elapsed during race) |
---|---|
Race Start | August 10, 2023 7:30:31pm UTC |
Race Finish | August 10, 2023 7:31:12pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 15.97 |
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") |