View Pit Stop page for race #1 by anna2897 — Ghost race
View profile for paolo (anna2897)
Official speed | 26.52 wpm (69.68 seconds elapsed during race) |
---|---|
Race Start | November 25, 2020 1:02:53am UTC |
Race Finish | November 25, 2020 1:04:02am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 9.28 |
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") |