View Pit Stop page for race #7 by kol123313 — Ghost race
View profile for Adsd (kol123313)
Official speed | 53.94 wpm (34.26 seconds elapsed during race) |
---|---|
Race Start | May 2, 2021 1:49:16am UTC |
Race Finish | May 2, 2021 1:49:50am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 18.88 |
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") |