View Pit Stop page for race #1 by jjustin2000 — Ghost race
View profile for hang xxiangyi (jjustin2000)
Official speed | 67.90 wpm (27.22 seconds elapsed during race) |
---|---|
Race Start | April 9, 2017 3:33:59pm UTC |
Race Finish | April 9, 2017 3:34:27pm UTC |
Outcome | Win (1 of 3) |
Opponents |
2. spicyrape (49.35 wpm) |
Accuracy | 93.0% |
Points | 0.00 |
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") |