View Pit Stop page for race #1 by dreamatd — Ghost race
View profile for Tianyi (dreamatd)
Official speed | 28.89 wpm (63.97 seconds elapsed during race) |
---|---|
Race Start | July 25, 2018 8:26:29am UTC |
Race Finish | July 25, 2018 8:27:33am UTC |
Outcome | No win (2 of 2) |
Accuracy | 91.0% |
Points | 10.11 |
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") |