View Pit Stop page for race #3 by saifhhasan — Ghost race
View profile for SAIF (saifhhasan)
Official speed | 54.61 wpm (33.84 seconds elapsed during race) |
---|---|
Race Start | December 24, 2014 9:20:18am UTC |
Race Finish | December 24, 2014 9:20:52am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. darshankapashi (60.22 wpm) |
Accuracy | 88.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") |