View Pit Stop page for race #5 by leonzalion — Ghost race
View profile for leon (leonzalion)
Official speed | 111.00 wpm (16.65 seconds elapsed during race) |
---|---|
Race Start | May 20, 2021 7:30:59pm UTC |
Race Finish | May 20, 2021 7:31:16pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 98.0% |
Points | 38.85 |
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") |