View Pit Stop page for race #7 by darth_taghizadeh — Ghost race
View profile for Darth Jeremy (darth_taghizadeh)
Official speed | 28.95 wpm (63.83 seconds elapsed during race) |
---|---|
Race Start | December 23, 2015 7:53:02pm UTC |
Race Finish | December 23, 2015 7:54:06pm UTC |
Outcome | No win (2 of 3) |
Opponents |
3. danteyokley (23.84 wpm) |
Accuracy | 90.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") |