View Pit Stop page for race #4 by sollight — Ghost race
View profile for Alvin (sollight)
Official speed | 55.91 wpm (33.05 seconds elapsed during race) |
---|---|
Race Start | April 10, 2017 3:12:14am UTC |
Race Finish | April 10, 2017 3:12:47am UTC |
Outcome | No win (3 of 4) |
Opponents |
1. andythedinosaur (77.74 wpm) 2. akk12 (62.62 wpm) |
Accuracy | 92.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") |